diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-12 17:21:19 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-12 17:21:19 -0200 |
| commit | 95da574dbc97bfab54c2fdb170e1caf2f5571f1f (patch) | |
| tree | d4d704c42079366197d6e9dcae8ebdf36135451a /lcode.c | |
| parent | 255052b6c6a1b109c93b104c03de8968b56dcd5a (diff) | |
| download | lua-github-95da574dbc97bfab54c2fdb170e1caf2f5571f1f.tar.gz | |
some compilers (wrongly) complain about that
Diffstat (limited to 'lcode.c')
| -rw-r--r-- | lcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lcode.c,v 1.60 2001/02/07 18:13:49 roberto Exp roberto $ +** $Id: lcode.c,v 1.61 2001/02/08 11:19:10 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -666,7 +666,7 @@ int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2) { } -const OpProperties luaK_opproperties[NUM_OPCODES] = { +const OpProperties luaK_opproperties[] = { {iU, 0, 0}, /* OP_RETURN */ {iAB, 0, 0}, /* OP_CALL */ {iAB, 0, 0}, /* OP_TAILCALL */ |
