summaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
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/*