summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-08-23 19:48:52 +0000
committerMarcus Boerger <helly@php.net>2003-08-23 19:48:52 +0000
commitc3d60fd7ff81d0604803868ccdaa74376dbee0bc (patch)
tree129d614cf2862aa74a85114d7330a9d6f8e25870 /ext/reflection/php_reflection.c
parent96fa63d6bfec1b2352ae54a4635d8b4fc914fefc (diff)
downloadphp-git-c3d60fd7ff81d0604803868ccdaa74376dbee0bc.tar.gz
Allow zend_throw_exception() to also set the exception code
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index 2710e83518..278cd3fb76 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -47,7 +47,7 @@
/* Exception throwing macro */
#define _DO_THROW(msg) \
- zend_throw_exception(msg, 1 TSRMLS_CC); \
+ zend_throw_exception(msg, 0 TSRMLS_CC); \
return; \
/* Smart string macros */