aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index f6061213..d35bab5c 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 2.146 2013/08/20 17:46:34 roberto Exp roberto $ 2** $Id: ltests.c,v 2.147 2013/08/21 19:21:16 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -747,7 +747,7 @@ static int string_query (lua_State *L) {
747 lua_pushinteger(L ,tb->size); 747 lua_pushinteger(L ,tb->size);
748 return 2; 748 return 2;
749 } 749 }
750 else if ((unsigned int)s < tb->size) { 750 else if (s < tb->size) {
751 TString *ts = tb->hash[s]; 751 TString *ts = tb->hash[s];
752 setsvalue2s(L, L->top, ts); 752 setsvalue2s(L, L->top, ts);
753 api_incr_top(L); 753 api_incr_top(L);