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/ppce500_pci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/ppce500_pci.c') diff --git a/hw/ppce500_pci.c b/hw/ppce500_pci.c index 547218f..9eed890 100644 --- a/hw/ppce500_pci.c +++ b/hw/ppce500_pci.c @@ -24,9 +24,9 @@ typedef target_phys_addr_t pci_addr_t; #include "qemu-log.h" #ifdef DEBUG_PCI -#define pci_debug(fmt, arg...) fprintf(stderr, fmt, ##arg) +#define pci_debug(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__) #else -#define pci_debug(fmt, arg...) +#define pci_debug(fmt, ...) #endif #define PCIE500_CFGADDR 0x0 -- cgit v1.1