aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-18 19:59:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-06-18 19:59:29 -0300
commit14929f5764a7990dfb62c8792cfdfe03c061da21 (patch)
tree76ca48dced058135cc2ff0877e81dd96d43e0ea1 /ltable.c
parent7021cc9bc8c216e941c5e5a49b34d58672b3f4c2 (diff)
downloadlua-14929f5764a7990dfb62c8792cfdfe03c061da21.tar.gz
lua-14929f5764a7990dfb62c8792cfdfe03c061da21.tar.bz2
lua-14929f5764a7990dfb62c8792cfdfe03c061da21.zip
use appropriate macros to convert GCObject to specific types
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ltable.c b/ltable.c
index 18802c9f..3a80d9d0 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 2.88 2014/04/15 16:32:49 roberto Exp roberto $ 2** $Id: ltable.c,v 2.89 2014/05/26 17:10:22 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*/
@@ -383,7 +383,8 @@ static void rehash (lua_State *L, Table *t, const TValue *ek) {
383 383
384 384
385Table *luaH_new (lua_State *L) { 385Table *luaH_new (lua_State *L) {
386 Table *t = &luaC_newobj(L, LUA_TTABLE, sizeof(Table))->h; 386 GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table));
387 Table *t = gco2t(o);
387 t->metatable = NULL; 388 t->metatable = NULL;
388 t->flags = cast_byte(~0); 389 t->flags = cast_byte(~0);
389 t->array = NULL; 390 t->array = NULL;