diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-08-31 09:30:37 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-09-04 09:45:54 +0000 |
commit | 7390cdfbf768617b80f570e17aa2e6c1c7b92592 (patch) | |
tree | c9f5cfca089c52288e2484e41153d401da42f9ba | |
parent | 2116eff93c57d3a9e5d0d3bc9e359d124e762a7d (diff) | |
download | hqemu-7390cdfbf768617b80f570e17aa2e6c1c7b92592.zip hqemu-7390cdfbf768617b80f570e17aa2e6c1c7b92592.tar.gz |
Change DPRINTF() to do{}while(0) to avoid compiler warning
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | slirp/bootp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/bootp.c b/slirp/bootp.c index 3e4e881..41460ff 100644 --- a/slirp/bootp.c +++ b/slirp/bootp.c @@ -33,7 +33,7 @@ static const uint8_t rfc1533_cookie[] = { RFC1533_COOKIE }; #define DPRINTF(fmt, ...) \ do if (slirp_debug & DBG_CALL) { fprintf(dfd, fmt, ## __VA_ARGS__); fflush(dfd); } while (0) #else -#define DPRINTF(fmt, ...) +#define DPRINTF(fmt, ...) do{}while(0) #endif static BOOTPClient *get_new_addr(Slirp *slirp, struct in_addr *paddr, |