summaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-10-06 15:34:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-10-06 15:34:16 -0300
commitbd38017ddfeda738f3f1881043c0ec8bbea1adbc (patch)
tree4fd935dbf16599661abc2d0c6be8ca8be083b678 /lobject.c
parent652f885c30e36c3bdbecd71b70dfbf273abfe24e (diff)
downloadlua-bd38017ddfeda738f3f1881043c0ec8bbea1adbc.tar.gz
lua-bd38017ddfeda738f3f1881043c0ec8bbea1adbc.tar.bz2
lua-bd38017ddfeda738f3f1881043c0ec8bbea1adbc.zip
small optimization for table size in machines with double allignment
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index b9aff12d..df571242 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.c,v 2.3 2004/05/03 12:30:41 roberto Exp roberto $ 2** $Id: lobject.c,v 2.4 2004/07/09 16:01:38 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -23,7 +23,7 @@
23 23
24 24
25 25
26const TValue luaO_nilobject = {LUA_TNIL, {NULL}}; 26const TValue luaO_nilobject = {{NULL}, LUA_TNIL};
27 27
28 28
29/* 29/*