From bd38017ddfeda738f3f1881043c0ec8bbea1adbc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 6 Oct 2004 15:34:16 -0300 Subject: small optimization for table size in machines with double allignment --- lobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index b9aff12d..df571242 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 2.3 2004/05/03 12:30:41 roberto Exp roberto $ +** $Id: lobject.c,v 2.4 2004/07/09 16:01:38 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -23,7 +23,7 @@ -const TValue luaO_nilobject = {LUA_TNIL, {NULL}}; +const TValue luaO_nilobject = {{NULL}, LUA_TNIL}; /* -- cgit v1.2.3-55-g6feb