From 5443928c5a8bf9f4dbbde0a50b17d81ca6cc4eb0 Mon Sep 17 00:00:00 2001 From: William Ahern Date: Wed, 27 Feb 2013 23:52:19 -0800 Subject: -n fix typo in luaL_setfuncs compat --- compat52.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat52.h b/compat52.h index 457974c..eb2d903 100644 --- a/compat52.h +++ b/compat52.h @@ -64,7 +64,7 @@ static void luaL_setfuncs(lua_State *L, const luaL_Reg *l, int nup) { lua_setfield(L, t, l->name); } - return lua_pop(L, nup); + lua_pop(L, nup); } /* luaL_setfuncs() */ -- cgit v1.2.3-59-g8ed1b