diff options
Diffstat (limited to 'src/3rdParty/lua/loadlib.c')
-rw-r--r-- | src/3rdParty/lua/loadlib.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/3rdParty/lua/loadlib.c b/src/3rdParty/lua/loadlib.c index 6f9fa37..d792dff 100644 --- a/src/3rdParty/lua/loadlib.c +++ b/src/3rdParty/lua/loadlib.c | |||
@@ -708,8 +708,13 @@ static const luaL_Reg ll_funcs[] = { | |||
708 | 708 | ||
709 | 709 | ||
710 | static void createsearcherstable (lua_State *L) { | 710 | static void createsearcherstable (lua_State *L) { |
711 | static const lua_CFunction searchers[] = | 711 | static const lua_CFunction searchers[] = { |
712 | {searcher_preload, searcher_Lua, searcher_C, searcher_Croot, NULL}; | 712 | searcher_preload, |
713 | searcher_Lua, | ||
714 | searcher_C, | ||
715 | searcher_Croot, | ||
716 | NULL | ||
717 | }; | ||
713 | int i; | 718 | int i; |
714 | /* create 'searchers' table */ | 719 | /* create 'searchers' table */ |
715 | lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0); | 720 | lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0); |