diff options
Diffstat (limited to 'lib/lua/src/luacomp.c')
-rw-r--r-- | lib/lua/src/luacomp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lua/src/luacomp.c b/lib/lua/src/luacomp.c index 1246869..abb7979 100644 --- a/lib/lua/src/luacomp.c +++ b/lib/lua/src/luacomp.c @@ -1,5 +1,5 @@ /* - ** $Id: luacomp.c,v 1.8 2007-07-27 10:05:54 pixel Exp $ + ** $Id: luacomp.c,v 1.9 2008-08-05 09:23:09 pixel Exp $ ** Lua compiler (saves bytecodes to files; also list bytecodes) ** Highly hacked by Nicolas "Pixel" Noble to be transformed into a ** small form-factor LUA compiler. @@ -29,7 +29,7 @@ const char * progname = PROGNAME; /* actual program name */ #define toproto(L, i) (clvalue(L->top + (i))->l.p) -static const Proto * combine(lua_State * L, int n) { +static Proto * combine(lua_State * L, int n) { if (n == 1) return toproto(L, -1); else { |