aboutsummaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-12-21 15:31:35 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-12-21 15:31:35 -0200
commitf42cc90d2d51b1121aa2ed44530013f1df09fec6 (patch)
treeaa229e5af86f2dbcbf7122c01354020b85be64f8 /lparser.c
parent9d2e454d6f42f86faf645a4a24f66023846ea9ab (diff)
downloadlua-f42cc90d2d51b1121aa2ed44530013f1df09fec6.tar.gz
lua-f42cc90d2d51b1121aa2ed44530013f1df09fec6.tar.bz2
lua-f42cc90d2d51b1121aa2ed44530013f1df09fec6.zip
some warnings
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lparser.c b/lparser.c
index 838e6336..2a11fef6 100644
--- a/lparser.c
+++ b/lparser.c
@@ -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);