diff options
author | Antony Dovgal <tony2001@php.net> | 2007-05-30 16:32:02 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-05-30 16:32:02 +0000 |
commit | 23eaae22117afa2f905763fd1a7b4411cfed8c09 (patch) | |
tree | 18daa6f9dd8d5d9aa06624012e1a22380ed87460 /Zend/zend_exceptions.c | |
parent | df057bf78def70de2da56545b1d2dda5d6b2f4e5 (diff) | |
download | php-git-23eaae22117afa2f905763fd1a7b4411cfed8c09.tar.gz |
MFH
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 1e38b968d7..62df718373 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -532,7 +532,7 @@ static 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(); +ZEND_END_ARG_INFO() static zend_function_entry default_exception_functions[] = { ZEND_ME(exception, __clone, NULL, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL) @@ -554,7 +554,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 0) ZEND_ARG_INFO(0, severity) ZEND_ARG_INFO(0, filename) ZEND_ARG_INFO(0, lineno) -ZEND_END_ARG_INFO(); +ZEND_END_ARG_INFO() static zend_function_entry error_exception_functions[] = { ZEND_ME(error_exception, __construct, arginfo_error_exception___construct, ZEND_ACC_PUBLIC) |