aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Wiese <aw-devel@meterriblecrew.net>2011-01-14 15:43:51 +0100
committerMax Kellermann <max@duempel.org>2011-01-14 16:22:25 +0100
commite6c3acaa6fc6f2003b118a93306a8508e13f0fb1 (patch)
tree3555d4aa3c57196d9cec50a8239428a93640b5da
parent0022fb100b7d22b9612474ebee944e66c2a7b33b (diff)
downloadmpd-e6c3acaa6fc6f2003b118a93306a8508e13f0fb1.tar.gz
mpd-e6c3acaa6fc6f2003b118a93306a8508e13f0fb1.tar.xz
mpd-e6c3acaa6fc6f2003b118a93306a8508e13f0fb1.zip
Fix NDEBUG test
<stdbool.h> needs to be included unconditionally from definition of NDEBUG, since »bool« doesn't get defined otherwise. Signed-off-by: Andreas Wiese <aw-devel@meterriblecrew.net>
-rw-r--r--src/pipe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipe.h b/src/pipe.h
index 2825b320a..b15cd76c1 100644
--- a/src/pipe.h
+++ b/src/pipe.h
@@ -20,9 +20,9 @@
#ifndef MPD_PIPE_H
#define MPD_PIPE_H
-#ifndef NDEBUG
#include <stdbool.h>
+#ifndef NDEBUG
struct audio_format;
#endif