From fca0a12e23f964006ce43d35ab86b27c6bbb0a48 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 29 Nov 2001 18:21:46 -0200 Subject: avoid clashing names between macros and fields --- ltests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 6171af95..e51ff23f 100644 --- a/ltests.c +++ b/ltests.c @@ -277,7 +277,7 @@ static int table_query (lua_State *L) { } else lua_pushstring(L, ""); - luaA_pushobject(L, &t->node[i].val); + luaA_pushobject(L, val(&t->node[i])); if (t->node[i].next) lua_pushnumber(L, t->node[i].next - t->node); else -- cgit v1.2.3-55-g6feb