diff options
author | Marcus Boerger <helly@php.net> | 2006-06-13 20:56:52 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-06-13 20:56:52 +0000 |
commit | 55086233ce4f6aca55be60e75eaea14f7f0c2fe8 (patch) | |
tree | 4802b6114fb5e2c3a62b73b8a6529e3d3857905f | |
parent | b37a784265b0f1aaa8ad435ae81cb37c564dfdc9 (diff) | |
download | php-git-55086233ce4f6aca55be60e75eaea14f7f0c2fe8.tar.gz |
- Arginfo fix (Hannes)
-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 8a3c059e3f..502ba6047f 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -634,7 +634,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(); @@ -653,7 +653,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) |