aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-03 13:45:15 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-03 13:45:15 -0200
commit5ca2709ba055901ba9d658aa2ca51e0682dfdb30 (patch)
tree89a4b5b3252e0c50eed39132493f6a5a362660ac /lvm.c
parentbb1cb7b9f112be1fb8453cc7ef4cbaf544850618 (diff)
downloadlua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.tar.gz
lua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.tar.bz2
lua-5ca2709ba055901ba9d658aa2ca51e0682dfdb30.zip
small warnings
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lvm.c b/lvm.c
index ace249ed..586267e7 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.30 1998/06/11 18:21:37 roberto Exp roberto $ 2** $Id: lvm.c,v 1.31 1998/07/12 16:16:43 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -316,7 +316,7 @@ StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base)
316 luaC_checkGC(); 316 luaC_checkGC();
317 adjust_varargs(base+(*pc++)-ZEROVARARG); 317 adjust_varargs(base+(*pc++)-ZEROVARARG);
318 } 318 }
319 while (1) { 319 for (;;) {
320 int aux; 320 int aux;
321 switch ((OpCode)(aux = *pc++)) { 321 switch ((OpCode)(aux = *pc++)) {
322 322