summaryrefslogtreecommitdiff
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-github-14929f5764a7990dfb62c8792cfdfe03c061da21.tar.gz
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 @@
/*
-** $Id: ltable.c,v 2.88 2014/04/15 16:32:49 roberto Exp roberto $
+** $Id: ltable.c,v 2.89 2014/05/26 17:10:22 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -383,7 +383,8 @@ static void rehash (lua_State *L, Table *t, const TValue *ek) {
Table *luaH_new (lua_State *L) {
- Table *t = &luaC_newobj(L, LUA_TTABLE, sizeof(Table))->h;
+ GCObject *o = luaC_newobj(L, LUA_TTABLE, sizeof(Table));
+ Table *t = gco2t(o);
t->metatable = NULL;
t->flags = cast_byte(~0);
t->array = NULL;