From 690efef3dee98ff05414b80ae6fa33a115ba6cdc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 28 Oct 2008 10:54:25 -0200 Subject: detail (added 'UNUSED' to unused argument) --- ltests.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 0b361c7f..f775d8f6 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.54 2008/08/13 17:02:12 roberto Exp roberto $ +** $Id: ltests.c,v 2.55 2008/08/26 13:27:42 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -1049,6 +1049,7 @@ static struct X { int x; } x; */ static void yieldf (lua_State *L, lua_Debug *ar) { + UNUSED(ar); lua_yield(L, 0); } -- cgit v1.2.3-55-g6feb