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 31e7b083..c66bbc8a 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.274 2003/01/27 15:12:52 roberto Exp roberto $ 2** $Id: lvm.c,v 1.275 2003/02/11 10:46:24 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*/
@@ -495,7 +495,7 @@ StkId luaV_execute (lua_State *L) {
495 } 495 }
496 case OP_NEWTABLE: { 496 case OP_NEWTABLE: {
497 int b = GETARG_B(i); 497 int b = GETARG_B(i);
498 if (b > 0) b = twoto(b-1); 498 b = fb2int(b);
499 sethvalue(ra, luaH_new(L, b, GETARG_C(i))); 499 sethvalue(ra, luaH_new(L, b, GETARG_C(i)));
500 luaC_checkGC(L); 500 luaC_checkGC(L);
501 break; 501 break;