summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-08-06 21:52:36 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-08-06 21:52:36 +0200
commit1ce4a828e2f0ac545ef2628a56b1065282a695b5 (patch)
treedb78e8c515c8da6778648e7c311265de0da8af59 /lib.h
parent5171db160f8f638655053863053b357efa612445 (diff)
Resolve if/else empty body ambiguity/warnings when compiling without DEBUG.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 71efb383..e13e1a24 100644
--- a/lib.h
+++ b/lib.h
@@ -132,7 +132,7 @@ void mutt_debug (FILE *, const char *, ...);
# else
-# define dprint(N,X)
+# define dprint(N,X) do { } while (0)
# endif