From df85ad2e7f975026ca1e6bd84b26fff81c8d99c8 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 25 Aug 2022 11:24:10 +0800 Subject: update to Lua 5.4.5. --- src/3rdParty/lua/loadlib.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/3rdParty/lua/loadlib.c') 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[] = { static void createsearcherstable (lua_State *L) { - static const lua_CFunction searchers[] = - {searcher_preload, searcher_Lua, searcher_C, searcher_Croot, NULL}; + static const lua_CFunction searchers[] = { + searcher_preload, + searcher_Lua, + searcher_C, + searcher_Croot, + NULL + }; int i; /* create 'searchers' table */ lua_createtable(L, sizeof(searchers)/sizeof(searchers[0]) - 1, 0); -- cgit v1.2.3-55-g6feb