load warning fix for lua src build in
This commit is contained in:
parent
3ee0fd6f92
commit
4e1b1d0364
@ -73,7 +73,7 @@ static void *ll_load (lua_State *L, const char *path) {
|
||||
|
||||
|
||||
static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
|
||||
lua_CFunction f = (lua_CFunction)dlsym(lib, sym);
|
||||
lua_CFunction f = __extension__(lua_CFunction)dlsym(lib, sym);
|
||||
if (f == NULL) lua_pushstring(L, dlerror());
|
||||
return f;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user