From 001faf3269541f0231482e0fccc846f62f8930b2 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Wed, 13 May 2009 17:53:17 +0000 Subject: Replace gcc variadic macro extension with C99 version Signed-off-by: Blue Swirl --- hw/sun4c_intctl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hw/sun4c_intctl.c') diff --git a/hw/sun4c_intctl.c b/hw/sun4c_intctl.c index 33df65309c..1b555578ce 100644 --- a/hw/sun4c_intctl.c +++ b/hw/sun4c_intctl.c @@ -28,10 +28,10 @@ //#define DEBUG_IRQ #ifdef DEBUG_IRQ -#define DPRINTF(fmt, args...) \ -do { printf("IRQ: " fmt , ##args); } while (0) +#define DPRINTF(fmt, ...) \ + do { printf("IRQ: " fmt , ## __VA_ARGS__); } while (0) #else -#define DPRINTF(fmt, args...) +#define DPRINTF(fmt, ...) #endif /* -- cgit v1.2.1