diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-10-28 10:54:25 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2008-10-28 10:54:25 -0200 |
commit | 690efef3dee98ff05414b80ae6fa33a115ba6cdc (patch) | |
tree | 12eee00353cf193447805a575e51aea1349001ae /ltests.c | |
parent | b9e92c8b0dd9d27a23459c2b097556abdfc096af (diff) | |
download | lua-690efef3dee98ff05414b80ae6fa33a115ba6cdc.tar.gz lua-690efef3dee98ff05414b80ae6fa33a115ba6cdc.tar.bz2 lua-690efef3dee98ff05414b80ae6fa33a115ba6cdc.zip |
detail (added 'UNUSED' to unused argument)
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.54 2008/08/13 17:02:12 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.55 2008/08/26 13:27:42 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 | */ |
@@ -1049,6 +1049,7 @@ static struct X { int x; } x; | |||
1049 | */ | 1049 | */ |
1050 | 1050 | ||
1051 | static void yieldf (lua_State *L, lua_Debug *ar) { | 1051 | static void yieldf (lua_State *L, lua_Debug *ar) { |
1052 | UNUSED(ar); | ||
1052 | lua_yield(L, 0); | 1053 | lua_yield(L, 0); |
1053 | } | 1054 | } |
1054 | 1055 | ||