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 c545ce8 commit 34b4db1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/fluidsynth_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 34b4db1

Please sign in to comment.