aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
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 2719bb20..c955f80d 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.221 2014/07/30 14:00:14 roberto Exp roberto $ 2** $Id: lvm.c,v 2.222 2014/07/30 14:42:44 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*/
@@ -1067,7 +1067,7 @@ void luaV_execute (lua_State *L) {
1067 vmcase(OP_SETLIST, 1067 vmcase(OP_SETLIST,
1068 int n = GETARG_B(i); 1068 int n = GETARG_B(i);
1069 int c = GETARG_C(i); 1069 int c = GETARG_C(i);
1070 int last; 1070 unsigned int last;
1071 Table *h; 1071 Table *h;
1072 if (n == 0) n = cast_int(L->top - ra) - 1; 1072 if (n == 0) n = cast_int(L->top - ra) - 1;
1073 if (c == 0) { 1073 if (c == 0) {