From b33bb28ea3218399d6023a8f3fd2f9a86a3dec41 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sat, 30 Jul 2011 19:03:20 +0300 Subject: build: fix --enable-debug, remove some "#ifdef MP_DEBUG" Recent commit 5d5ca22a6d ("options: commandline: accept --foo=xyz style options") left some bad code under "#ifdef MP_DEBUG" in playtree.c, which caused a compilation failure if configured with "--enable-debug". Fix this. Having the "#ifdef MP_DEBUG" there was completely unnecessary; it only increased the risk for this kind of problems for no real benefit - executing the asserts under it would have no noticeable performance or other penalty in default builds either. Remove several cases of such harmful "#ifdef MP_DEBUG". --- osdep/setenv.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'osdep') diff --git a/osdep/setenv.c b/osdep/setenv.c index e1e3b1f7da..9919fff2a3 100644 --- a/osdep/setenv.c +++ b/osdep/setenv.c @@ -22,9 +22,6 @@ #include #include -#ifndef MP_DEBUG - #define NDEBUG -#endif #include int setenv(const char *name, const char *val, int overwrite) -- cgit v1.2.3