From 41eb6086b757a3ca1b2507a15a9ffcce2ad27d1f Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 26 Feb 2014 22:40:35 +0000 Subject: py: Remove more var arg names fro macros with var args. --- py/runtime.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'py/runtime.c') diff --git a/py/runtime.c b/py/runtime.c index b9caf04570..ca08ce3d1f 100644 --- a/py/runtime.c +++ b/py/runtime.c @@ -25,10 +25,10 @@ #define DEBUG_PRINT (1) #define WRITE_CODE (1) #define DEBUG_printf DEBUG_printf -#define DEBUG_OP_printf(args...) DEBUG_printf(args) +#define DEBUG_OP_printf(...) DEBUG_printf(__VA_ARGS__) #else // don't print debugging info -#define DEBUG_printf(args...) (void)0 -#define DEBUG_OP_printf(args...) (void)0 +#define DEBUG_printf(...) (void)0 +#define DEBUG_OP_printf(...) (void)0 #endif // locals and globals need to be pointers because they can be the same in outer module scope -- cgit v1.2.3