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 ec30724c..52071bf1 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 2.117 2011/05/05 16:18:53 roberto Exp roberto $ 2** $Id: ltests.c,v 2.118 2011/05/25 14:12:28 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*/
@@ -291,7 +291,7 @@ static void checkclosure (global_State *g, Closure *cl) {
291static int lua_checkpc (pCallInfo ci) { 291static int lua_checkpc (pCallInfo ci) {
292 if (!isLua(ci)) return 1; 292 if (!isLua(ci)) return 1;
293 else { 293 else {
294 Proto *p = ci_func(ci)->l.p; 294 Proto *p = ci_func(ci)->p;
295 return p->code <= ci->u.l.savedpc && 295 return p->code <= ci->u.l.savedpc &&
296 ci->u.l.savedpc <= p->code + p->sizecode; 296 ci->u.l.savedpc <= p->code + p->sizecode;
297 } 297 }