diff options
Diffstat (limited to 'hw/arm_gic.c')
-rw-r--r-- | hw/arm_gic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/arm_gic.c b/hw/arm_gic.c index 2f484e191e..cb774d6e20 100644 --- a/hw/arm_gic.c +++ b/hw/arm_gic.c @@ -14,10 +14,10 @@ //#define DEBUG_GIC #ifdef DEBUG_GIC -#define DPRINTF(fmt, args...) \ -do { printf("arm_gic: " fmt , ##args); } while (0) +#define DPRINTF(fmt, ...) \ +do { printf("arm_gic: " fmt , ## __VA_ARGS__); } while (0) #else -#define DPRINTF(fmt, args...) do {} while(0) +#define DPRINTF(fmt, ...) do {} while(0) #endif #ifdef NVIC |