diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-12-21 15:31:35 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-12-21 15:31:35 -0200 |
commit | f42cc90d2d51b1121aa2ed44530013f1df09fec6 (patch) | |
tree | aa229e5af86f2dbcbf7122c01354020b85be64f8 /lparser.c | |
parent | 9d2e454d6f42f86faf645a4a24f66023846ea9ab (diff) | |
download | lua-f42cc90d2d51b1121aa2ed44530013f1df09fec6.tar.gz lua-f42cc90d2d51b1121aa2ed44530013f1df09fec6.tar.bz2 lua-f42cc90d2d51b1121aa2ed44530013f1df09fec6.zip |
some warnings
Diffstat (limited to 'lparser.c')
-rw-r--r-- | lparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -443,7 +443,7 @@ static void funcargs (LexState *ls, expdesc *f) { | |||
443 | } | 443 | } |
444 | default: { | 444 | default: { |
445 | luaK_error(ls, "function arguments expected"); | 445 | luaK_error(ls, "function arguments expected"); |
446 | break; | 446 | return; |
447 | } | 447 | } |
448 | } | 448 | } |
449 | lua_assert(f->k == VNONRELOC); | 449 | lua_assert(f->k == VNONRELOC); |