From dd1221582bc7c0c2ec508b5bad4086f8801b61a8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Tue, 10 Jan 2006 10:50:00 -0200 Subject: details --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index fe30b966..739a011a 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.33 2005/10/06 20:47:32 roberto Exp roberto $ +** $Id: ltests.c,v 2.34 2005/12/22 16:19:56 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -564,7 +564,7 @@ static int table_query (lua_State *L) { t = hvalue(obj_at(L, 1)); if (i == -1) { lua_pushinteger(L, t->sizearray); - lua_pushinteger(L, t->node == &luaH_dummynode ? 0 : sizenode(t)); + lua_pushinteger(L, t->node == luaH_dummynode ? 0 : sizenode(t)); lua_pushinteger(L, t->lastfree - t->node); } else if (i < t->sizearray) { -- cgit v1.2.3-55-g6feb