diff options
author | Andreas Wiese <aw-devel@meterriblecrew.net> | 2011-01-14 15:43:51 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-01-14 16:22:25 +0100 |
commit | e6c3acaa6fc6f2003b118a93306a8508e13f0fb1 (patch) | |
tree | 3555d4aa3c57196d9cec50a8239428a93640b5da /src | |
parent | 0022fb100b7d22b9612474ebee944e66c2a7b33b (diff) | |
download | mpd-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>
Diffstat (limited to 'src')
-rw-r--r-- | src/pipe.h | 2 |
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 |