* Fix getter for r_lib_types strings

- zzZZzZ sleepy bug!
This commit is contained in:
pancake 2009-04-01 01:46:37 +00:00
parent 60c3e46651
commit 71cfa4d5c3
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ const char *r_lib_types[] = {
const char *r_lib_types_get(int idx)
{
if (idx<0||idx>R_LIB_TYPE_LAST)
return r_lib_types[idx];
return "unk";
return "unk";
return r_lib_types[idx];
}
void *r_lib_dl_open(const char *libname)