diff options
Diffstat (limited to 'hw/eccmemctl.c')
-rw-r--r-- | hw/eccmemctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/eccmemctl.c b/hw/eccmemctl.c index 28519c81f9..07f5ef76ff 100644 --- a/hw/eccmemctl.c +++ b/hw/eccmemctl.c @@ -28,10 +28,10 @@ //#define DEBUG_ECC #ifdef DEBUG_ECC -#define DPRINTF(fmt, args...) \ - do { printf("ECC: " fmt , ##args); } while (0) +#define DPRINTF(fmt, ...) \ + do { printf("ECC: " fmt , ## __VA_ARGS__); } while (0) #else -#define DPRINTF(fmt, args...) +#define DPRINTF(fmt, ...) #endif /* There are 3 versions of this chip used in SMP sun4m systems: |