From 34b4db10b7164d95e1266c713610554fa96f6914 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 d03a23f0f..66d7b5e0e 100644 --- a/src/utils/fluidsynth_priv.h +++ b/src/utils/fluidsynth_priv.h @@ -225,7 +225,7 @@ do { strncpy(_dst,_src,_n); \ #define M_LN10 2.3025850929940456840179914546844 #endif -#ifdef DEBUG && !defined(NDEBUG) +#if defined(DEBUG) && !defined(NDEBUG) #define FLUID_ASSERT(a) g_assert(a) #else #define FLUID_ASSERT(a)