diff options
Diffstat (limited to 'hw/pl022.c')
-rw-r--r-- | hw/pl022.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/hw/pl022.c b/hw/pl022.c index 3027bcf7e3..4f0ff87da8 100644 --- a/hw/pl022.c +++ b/hw/pl022.c @@ -13,14 +13,14 @@ //#define DEBUG_PL022 1 #ifdef DEBUG_PL022 -#define DPRINTF(fmt, args...) \ -do { printf("pl022: " fmt , ##args); } while (0) -#define BADF(fmt, args...) \ -do { fprintf(stderr, "pl022: error: " fmt , ##args); exit(1);} while (0) +#define DPRINTF(fmt, ...) \ +do { printf("pl022: " fmt , ## __VA_ARGS__); } while (0) +#define BADF(fmt, ...) \ +do { fprintf(stderr, "pl022: error: " fmt , ## __VA_ARGS__); exit(1);} while (0) #else -#define DPRINTF(fmt, args...) do {} while(0) -#define BADF(fmt, args...) \ -do { fprintf(stderr, "pl022: error: " fmt , ##args);} while (0) +#define DPRINTF(fmt, ...) do {} while(0) +#define BADF(fmt, ...) \ +do { fprintf(stderr, "pl022: error: " fmt , ## __VA_ARGS__);} while (0) #endif #define PL022_CR1_LBM 0x01 |