aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@solaris.(none)> 2013-02-27 23:52:19 -0800
committerLibravatarLibravatar William Ahern <william@solaris.(none)> 2013-02-27 23:52:19 -0800
commit5443928c5a8bf9f4dbbde0a50b17d81ca6cc4eb0 (patch)
treef45bc0ce9ca1e692c654bc8b430a762fc7043651
parent735bc0d416edbd622b45e8d8b590cb3c2948bec0 (diff)
downloadluaossl-5443928c5a8bf9f4dbbde0a50b17d81ca6cc4eb0.tar.gz
luaossl-5443928c5a8bf9f4dbbde0a50b17d81ca6cc4eb0.tar.bz2
luaossl-5443928c5a8bf9f4dbbde0a50b17d81ca6cc4eb0.zip
-n
fix typo in luaL_setfuncs compat
-rw-r--r--compat52.h2
1 files changed, 1 insertions, 1 deletions
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() */