From e739246ef70cd3494477890f693e9a4e60c274d4 Mon Sep 17 00:00:00 2001 From: derselbst Date: Sun, 27 Oct 2019 17:07:43 +0100 Subject: [PATCH] Fix broken #ifdef --- src/utils/fluidsynth_priv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/fluidsynth_priv.h b/src/utils/fluidsynth_priv.h index cad41e78..71569bd0 100644 --- a/src/utils/fluidsynth_priv.h +++ b/src/utils/fluidsynth_priv.h @@ -275,7 +275,7 @@ do { strncpy(_dst,_src,_n); \ #define FLUID_LOG fluid_log #endif -#ifdef DEBUG && !defined(NDEBUG) +#if defined(DEBUG) && !defined(NDEBUG) #define FLUID_ASSERT(a) g_assert(a) #else #define FLUID_ASSERT(a)