summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2016-03-18 19:30:29 +0100
committerNikita Popov <nikic@php.net>2016-03-18 19:31:34 +0100
commitfd955551070013464b4e909a79ab7e4b8abc90f7 (patch)
treed61c3f4a006626f1b267ad27e6f68469012419a7 /Zend/zend_execute_API.c
parent69c9be5c99830edec947849eee7e6f1ac232905d (diff)
downloadphp-git-fd955551070013464b4e909a79ab7e4b8abc90f7.tar.gz
Fix ZEND_DEBUG condition
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index 2a7c8f4894..650f0a1e52 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -397,7 +397,7 @@ void shutdown_executor(void) /* {{{ */
zend_shutdown_fpu();
-#ifdef ZEND_DEBUG
+#if ZEND_DEBUG
if (EG(ht_iterators_used) && !CG(unclean_shutdown)) {
zend_error(E_WARNING, "Leaked %" PRIu32 " hashtable iterators", EG(ht_iterators_used));
}