From fdfd5b44ee48a5497181d0bcaa89586b12a48eb4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 24 Jun 2002 17:18:38 -0300 Subject: TM_GETTABLE/TM_SETTABLE don't need fast access anymore --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index 37dc6b0f..faae28cf 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 1.109 2002/05/27 20:35:40 roberto Exp roberto $ +** $Id: ltable.c,v 1.110 2002/06/13 13:39:55 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -302,7 +302,7 @@ Table *luaH_new (lua_State *L, int narray, int lnhash) { t->next = G(L)->roottable; G(L)->roottable = t; t->mark = t; - t->flags = cast(unsigned short, ~0); + t->flags = cast(lu_byte, ~0); /* temporary values (kept only if some malloc fails) */ t->array = NULL; t->sizearray = 0; -- cgit v1.2.3-55-g6feb