From 2f8d417bd28b4abb5998a05fa0a9ebeb970ca845 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Thu, 25 Aug 2011 20:02:58 -0700 Subject: [PATCH] pp.c: Suppress stupid compiler warning --- pp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pp.c b/pp.c index e185cad..ea6eb00 100644 --- a/pp.c +++ b/pp.c @@ -6072,7 +6072,7 @@ PP(pp_coreargs) ); oa >>= 4; } - for (;oa;numargs&&(++svp,--numargs)) { + for (;oa;(void)(numargs&&(++svp,--numargs))) { whicharg++; switch (oa & 7) { case OA_SCALAR: -- 2.7.4