diff options
| author | Gustavo Lopes <glopes@nebm.ist.utl.pt> | 2012-12-26 18:16:04 +0000 |
|---|---|---|
| committer | Gustavo Lopes <glopes@nebm.ist.utl.pt> | 2013-01-29 19:19:51 +0100 |
| commit | 3bedc8ec277a246db6d3bfbe6313a861e46c4505 (patch) | |
| tree | fcf8dc6d71225f86848056b73d999053730b4e93 | |
| parent | 9d1bdaa569e0de0c36ee483784606246e106013f (diff) | |
| download | php-git-3bedc8ec277a246db6d3bfbe6313a861e46c4505.tar.gz | |
Fixed paramter count
| -rw-r--r-- | ext/intl/converter/converter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/converter/converter.c b/ext/intl/converter/converter.c index 09ea609e8c..387760a9d1 100644 --- a/ext/intl/converter/converter.c +++ b/ext/intl/converter/converter.c @@ -93,7 +93,7 @@ static void php_converter_default_callback(zval *return_value, zval *zobj, long /* {{{ proto void UConverter::toUCallback(long $reason, string $source, string $codeUnits, long &$error) */ -ZEND_BEGIN_ARG_INFO_EX(php_converter_toUCallback_arginfo, 0, ZEND_RETURN_VALUE, 5) +ZEND_BEGIN_ARG_INFO_EX(php_converter_toUCallback_arginfo, 0, ZEND_RETURN_VALUE, 4) ZEND_ARG_INFO(0, reason) ZEND_ARG_INFO(0, source) ZEND_ARG_INFO(0, codeUnits) @@ -115,7 +115,7 @@ static PHP_METHOD(UConverter, toUCallback) { /* {{{ proto void UConverter::fromUCallback(long $reason, Array $source, long $codePoint, long &$error) */ -ZEND_BEGIN_ARG_INFO_EX(php_converter_fromUCallback_arginfo, 0, ZEND_RETURN_VALUE, 5) +ZEND_BEGIN_ARG_INFO_EX(php_converter_fromUCallback_arginfo, 0, ZEND_RETURN_VALUE, 4) ZEND_ARG_INFO(0, reason) ZEND_ARG_INFO(0, source) ZEND_ARG_INFO(0, codePoint) |
