Fix broken #ifdef

This commit is contained in:
derselbst 2019-10-27 17:07:43 +01:00
parent 99a0ccbaad
commit e739246ef7

View file

@ -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)