]> Git Repo - qemu.git/blobdiff - hw/unin_pci.c
Replace gcc variadic macro extension with C99 version
[qemu.git] / hw / unin_pci.c
index b751916796a05b335c145b64832f6530eba76300..8277b67a2d55121e098a4a3232faffb59597f1ea 100644 (file)
 //#define DEBUG_UNIN
 
 #ifdef DEBUG_UNIN
-#define UNIN_DPRINTF(fmt, args...) \
-do { printf("UNIN: " fmt , ##args); } while (0)
+#define UNIN_DPRINTF(fmt, ...)                                  \
+    do { printf("UNIN: " fmt , ## __VA_ARGS__); } while (0)
 #else
-#define UNIN_DPRINTF(fmt, args...)
+#define UNIN_DPRINTF(fmt, ...)
 #endif
 
 typedef target_phys_addr_t pci_addr_t;
This page took 0.022652 seconds and 4 git commands to generate.