From 33c49f7fa03cf7e3bf7bb3aa697dc567d910c661 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 22 Aug 2013 12:21:48 -0300 Subject: some details over new implementation of string table --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index f6061213..d35bab5c 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.146 2013/08/20 17:46:34 roberto Exp roberto $ +** $Id: ltests.c,v 2.147 2013/08/21 19:21:16 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -747,7 +747,7 @@ static int string_query (lua_State *L) { lua_pushinteger(L ,tb->size); return 2; } - else if ((unsigned int)s < tb->size) { + else if (s < tb->size) { TString *ts = tb->hash[s]; setsvalue2s(L, L->top, ts); api_incr_top(L); -- cgit v1.2.3-55-g6feb