diff options
Diffstat (limited to 'hw/usb-serial.c')
-rw-r--r-- | hw/usb-serial.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/usb-serial.c b/hw/usb-serial.c index 52084822fc..be231f91ed 100644 --- a/hw/usb-serial.c +++ b/hw/usb-serial.c @@ -15,10 +15,10 @@ //#define DEBUG_Serial #ifdef DEBUG_Serial -#define DPRINTF(fmt, args...) \ -do { printf("usb-serial: " fmt , ##args); } while (0) +#define DPRINTF(fmt, ...) \ +do { printf("usb-serial: " fmt , ## __VA_ARGS__); } while (0) #else -#define DPRINTF(fmt, args...) do {} while(0) +#define DPRINTF(fmt, ...) do {} while(0) #endif #define RECV_BUF 384 |