diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-07-23 13:44:30 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-07-23 13:44:30 -0300 |
commit | 73ad16b5c6baf71c3e334859666112d1c5137c23 (patch) | |
tree | 7f7314dab217aa38a110bf469f2343970fd29b68 | |
parent | 97e299c3958dfd865cda7cce06cf1ea825bbaffb (diff) | |
download | lua-73ad16b5c6baf71c3e334859666112d1c5137c23.tar.gz lua-73ad16b5c6baf71c3e334859666112d1c5137c23.tar.bz2 lua-73ad16b5c6baf71c3e334859666112d1c5137c23.zip |
no need for type 'pCallInfo'
-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.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 | ||
283 | static int lua_checkpc (pCallInfo ci) { | 283 | static 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; |