aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-15 12:27:28 +0200
committerMax Kellermann <max@duempel.org>2008-09-15 12:27:28 +0200
commit4ebba1b36f4f171fb5daa25a8578e21d2740c517 (patch)
treed65b86318939ce111bf855539aa4d1b3e2bc581b /src/main.c
parent7d98fb19dc2b7c3af289b0a7c1a0db68e7fea8c9 (diff)
downloadmpd-4ebba1b36f4f171fb5daa25a8578e21d2740c517.tar.gz
mpd-4ebba1b36f4f171fb5daa25a8578e21d2740c517.tar.xz
mpd-4ebba1b36f4f171fb5daa25a8578e21d2740c517.zip
use !NDEBUG instead of DEBUG
NDEBUG is more commonly used than DEBUG, e.g. in assert.h. Convert all macros to NDEBUG, and declare NDEBUG when debugging is disabled.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index c2c7170eb..1d93b69fc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -154,7 +154,7 @@ sigstop(void)
kill(0, SIGSTOP); /* issue SIGSTOP */
}
-#ifdef DEBUG
+#ifndef NDEBUG
void
D(char *format, ...)
{