summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Ahern <william@solaris.(none)>2013-02-27 23:52:19 -0800
committerWilliam 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) {
64 lua_setfield(L, t, l->name); 64 lua_setfield(L, t, l->name);
65 } 65 }
66 66
67 return lua_pop(L, nup); 67 lua_pop(L, nup);
68} /* luaL_setfuncs() */ 68} /* luaL_setfuncs() */
69 69
70 70