Skip to content

Commit

Permalink
Fix broken #ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
derselbst committed Oct 27, 2019
1 parent 99a0ccb commit e739246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/fluidsynth_priv.h
Expand Up @@ -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)
Expand Down

0 comments on commit e739246

Please sign in to comment.