aboutsummaryrefslogtreecommitdiffstats
path: root/unmime.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-04-29 11:01:52 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-04-29 20:40:36 +0200
commit005cbf2a5709923e292e6909ed3663f1a83640da (patch)
treef1bd0def454820d8b2442991e20688be0a94629a /unmime.c
parent54b3b4b7e92fe237942a78c374ca2d57465719b9 (diff)
downloadfetchmail-005cbf2a5709923e292e6909ed3663f1a83640da.tar.gz
fetchmail-005cbf2a5709923e292e6909ed3663f1a83640da.tar.bz2
fetchmail-005cbf2a5709923e292e6909ed3663f1a83640da.zip
Properly parenthesize DBG_FWRITE macro.
Diffstat (limited to 'unmime.c')
-rw-r--r--unmime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unmime.c b/unmime.c
index 8ff782a5..1409bd67 100644
--- a/unmime.c
+++ b/unmime.c
@@ -657,7 +657,7 @@ int outlevel = 0;
#define BUFSIZE_INCREMENT 4096
#ifdef DEBUG
-#define DBG_FWRITE(B,L,BS,FD) fwrite(B, L, BS, FD)
+#define DBG_FWRITE(B,L,BS,FD) ((void)fwrite((B), (L), (BS), (FD)))
#else
#define DBG_FWRITE(B,L,BS,FD)
#endif