diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index bcd5c806b1b7c..520b1209f4846 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -17,11 +17,11 @@ #include #include -#ifdef ZEND_DEBUG +#if ZEND_DEBUG # include -# define TSRM_ASSERT assert +# define TSRM_ASSERT(c) assert(c) #else -# define TSRM_ASSERT +# define TSRM_ASSERT(c) #endif typedef struct _tsrm_tls_entry tsrm_tls_entry;