summaryrefslogtreecommitdiff
path: root/TSRM/TSRM.c
diff options
context:
space:
mode:
Diffstat (limited to 'TSRM/TSRM.c')
-rw-r--r--TSRM/TSRM.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c
index bcd5c806b1..acd1c395d7 100644
--- a/TSRM/TSRM.c
+++ b/TSRM/TSRM.c
@@ -17,11 +17,11 @@
#include <stdio.h>
#include <stdarg.h>
-#ifdef ZEND_DEBUG
+#if ZEND_DEBUG
# include <assert.h>
-# 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;