summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorEtienne Kneuss <colder@php.net>2008-10-02 19:54:03 +0000
committerEtienne Kneuss <colder@php.net>2008-10-02 19:54:03 +0000
commitb8794599735f33daf34d2239698ea39dc5c1f154 (patch)
tree7ee6f0eca0614fe235a5f6587a4290dc11a16436 /Zend/zend_execute_API.c
parent97e667d2500b8f2fc58d2ed5b0c89e9d09565eff (diff)
downloadphp-git-b8794599735f33daf34d2239698ea39dc5c1f154.tar.gz
MFH: Use enum alternative instead of explicit value
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 a301efc774..808505366d 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -146,7 +146,7 @@ void init_executor(TSRMLS_D) /* {{{ */
EG(in_execution) = 0;
EG(in_autoload) = NULL;
EG(autoload_func) = NULL;
- EG(error_handling) = 0;
+ EG(error_handling) = EH_NORMAL;
zend_vm_stack_init(TSRMLS_C);
zend_vm_stack_push((void *) NULL TSRMLS_CC);