diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-05-13 17:53:17 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-05-13 17:53:17 +0000 |
commit | 001faf3269541f0231482e0fccc846f62f8930b2 (patch) | |
tree | a5a7b0143f3fd9d71e42eb03c4967f8763ec3501 /slirp/bootp.c | |
parent | 4cfce484c5d7e514c23689f3194055b5463d6054 (diff) |
Replace gcc variadic macro extension with C99 version
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
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) |