diff options
Diffstat (limited to 'hw/mips_malta.c')
-rw-r--r-- | hw/mips_malta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c index fd81753d2b..9710adc24e 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -114,9 +114,9 @@ static void malta_fpga_update_display(void *opaque) //~ #define DEBUG #if defined(DEBUG) -# define logout(fmt, args...) fprintf(stderr, "MALTA\t%-24s" fmt, __func__, ##args) +# define logout(fmt, ...) fprintf(stderr, "MALTA\t%-24s" fmt, __func__, ## __VA_ARGS__) #else -# define logout(fmt, args...) ((void)0) +# define logout(fmt, ...) ((void)0) #endif struct _eeprom24c0x_t { |