aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index 37dc6b0f..faae28cf 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 1.109 2002/05/27 20:35:40 roberto Exp roberto $ 2** $Id: ltable.c,v 1.110 2002/06/13 13:39:55 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -302,7 +302,7 @@ Table *luaH_new (lua_State *L, int narray, int lnhash) {
302 t->next = G(L)->roottable; 302 t->next = G(L)->roottable;
303 G(L)->roottable = t; 303 G(L)->roottable = t;
304 t->mark = t; 304 t->mark = t;
305 t->flags = cast(unsigned short, ~0); 305 t->flags = cast(lu_byte, ~0);
306 /* temporary values (kept only if some malloc fails) */ 306 /* temporary values (kept only if some malloc fails) */
307 t->array = NULL; 307 t->array = NULL;
308 t->sizearray = 0; 308 t->sizearray = 0;