diff options
author | Marcus Boerger <helly@php.net> | 2006-06-13 20:57:35 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-06-13 20:57:35 +0000 |
commit | 9660548a22c998b5110867cef20c7aa2a9d25f3b (patch) | |
tree | 0e43e72a1934f82f91f76d0c1cb21934867b5d3c /Zend/zend_exceptions.c | |
parent | b8bee35259140304c0c5688918bf8715841d3df0 (diff) | |
download | php-git-9660548a22c998b5110867cef20c7aa2a9d25f3b.tar.gz |
- MFH Arginfo fix (Hannes)
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 0d40e01eae..6a7cf43bd5 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -532,7 +532,7 @@ ZEND_METHOD(exception, __toString) * that gives the user anything to accomplish this. */ static -ZEND_BEGIN_ARG_INFO(arginfo_exception___construct, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_exception___construct, 0, 0, 0) ZEND_ARG_INFO(0, message) ZEND_ARG_INFO(0, code) ZEND_END_ARG_INFO(); @@ -551,7 +551,7 @@ static zend_function_entry default_exception_functions[] = { }; static -ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 3) +ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 0) ZEND_ARG_INFO(0, message) ZEND_ARG_INFO(0, code) ZEND_ARG_INFO(0, severity) |