diff options
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.163 2014/02/11 12:18:12 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.164 2014/02/13 12:11:34 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 | */ |
@@ -301,7 +301,7 @@ static void checkstack (global_State *g, lua_State *L1) { | |||
301 | CallInfo *ci; | 301 | CallInfo *ci; |
302 | UpVal *uv; | 302 | UpVal *uv; |
303 | lua_assert(!isdead(g, obj2gco(L1))); | 303 | lua_assert(!isdead(g, obj2gco(L1))); |
304 | for (uv = L1->openupval; uv != NULL; uv = uv->u.op.next) | 304 | for (uv = L1->openupval; uv != NULL; uv = uv->u.open.next) |
305 | lua_assert(upisopen(uv)); /* must be open */ | 305 | lua_assert(upisopen(uv)); /* must be open */ |
306 | for (ci = L1->ci; ci != NULL; ci = ci->previous) { | 306 | for (ci = L1->ci; ci != NULL; ci = ci->previous) { |
307 | lua_assert(ci->top <= L1->stack_last); | 307 | lua_assert(ci->top <= L1->stack_last); |