aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-07-23 13:44:30 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-07-23 13:44:30 -0300
commit73ad16b5c6baf71c3e334859666112d1c5137c23 (patch)
tree7f7314dab217aa38a110bf469f2343970fd29b68
parent97e299c3958dfd865cda7cce06cf1ea825bbaffb (diff)
downloadlua-73ad16b5c6baf71c3e334859666112d1c5137c23.tar.gz
lua-73ad16b5c6baf71c3e334859666112d1c5137c23.tar.bz2
lua-73ad16b5c6baf71c3e334859666112d1c5137c23.zip
no need for type 'pCallInfo'
-rw-r--r--ltests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltests.c b/ltests.c
index 0f30587f..55167ca9 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 2.180 2014/07/18 14:46:47 roberto Exp roberto $ 2** $Id: ltests.c,v 2.181 2014/07/19 15:14:46 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*/
@@ -280,7 +280,7 @@ static void checkLclosure (global_State *g, LClosure *cl) {
280} 280}
281 281
282 282
283static int lua_checkpc (pCallInfo ci) { 283static int lua_checkpc (CallInfo *ci) {
284 if (!isLua(ci)) return 1; 284 if (!isLua(ci)) return 1;
285 else { 285 else {
286 Proto *p = ci_func(ci)->p; 286 Proto *p = ci_func(ci)->p;