diff options
Diffstat (limited to 'slirp/bootp.c')
-rw-r--r-- | slirp/bootp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/slirp/bootp.c b/slirp/bootp.c index 8a97660abc..ae71e460b6 100644 --- a/slirp/bootp.c +++ b/slirp/bootp.c @@ -43,10 +43,10 @@ const char *bootp_filename; static const uint8_t rfc1533_cookie[] = { RFC1533_COOKIE }; #ifdef DEBUG -#define dprintf(fmt, args...) \ -if (slirp_debug & DBG_CALL) { fprintf(dfd, fmt, ## args); fflush(dfd); } +#define dprintf(fmt, ...) \ +if (slirp_debug & DBG_CALL) { fprintf(dfd, fmt, ## __VA_ARGS__); fflush(dfd); } #else -#define dprintf(fmt, args...) +#define dprintf(fmt, ...) #endif static BOOTPClient *get_new_addr(struct in_addr *paddr) |