no need for type 'pCallInfo'

This commit is contained in:
Roberto Ierusalimschy 2014-07-23 13:44:30 -03:00
parent 97e299c395
commit 73ad16b5c6
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/* /*
** $Id: ltests.c,v 2.180 2014/07/18 14:46:47 roberto Exp roberto $ ** $Id: ltests.c,v 2.181 2014/07/19 15:14:46 roberto Exp roberto $
** Internal Module for Debugging of the Lua Implementation ** Internal Module for Debugging of the Lua Implementation
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -280,7 +280,7 @@ static void checkLclosure (global_State *g, LClosure *cl) {
} }
static int lua_checkpc (pCallInfo ci) { static int lua_checkpc (CallInfo *ci) {
if (!isLua(ci)) return 1; if (!isLua(ci)) return 1;
else { else {
Proto *p = ci_func(ci)->p; Proto *p = ci_func(ci)->p;