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/ppc4xx_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/ppc4xx_pci.c') diff --git a/hw/ppc4xx_pci.c b/hw/ppc4xx_pci.c index 2e67508..5198bbb 100644 --- a/hw/ppc4xx_pci.c +++ b/hw/ppc4xx_pci.c @@ -33,7 +33,7 @@ typedef target_phys_addr_t pci_addr_t; #ifdef DEBUG #define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0) #else -#define DPRINTF(fmt, args...) +#define DPRINTF(fmt, ...) #endif /* DEBUG */ struct PCIMasterMap { -- cgit v1.1