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>
This commit is contained in:
Andreas Wiese 2011-01-14 15:43:51 +01:00 committed by Max Kellermann
parent 0022fb100b
commit e6c3acaa6f

View File

@ -20,9 +20,9 @@
#ifndef MPD_PIPE_H
#define MPD_PIPE_H
#ifndef NDEBUG
#include <stdbool.h>
#ifndef NDEBUG
struct audio_format;
#endif