aboutsummaryrefslogtreecommitdiffstats
path: root/slirp/bootp.c
diff options
context:
space:
mode:
Diffstat (limited to 'slirp/bootp.c')
-rw-r--r--slirp/bootp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/slirp/bootp.c b/slirp/bootp.c
index 8a97660ab..ae71e460b 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)