diff options
| author | Marcus Boerger <helly@php.net> | 2005-03-13 16:35:01 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2005-03-13 16:35:01 +0000 |
| commit | dd54f36d4928034e199957ab0e686270c72f3efb (patch) | |
| tree | b46b2cb21f3012eac5e55fd5ce76965ffb653ed4 | |
| parent | c6e39471de7dfdf6927faa87c71fe78baf2da91b (diff) | |
| download | php-git-dd54f36d4928034e199957ab0e686270c72f3efb.tar.gz | |
- Fix signature definition
| -rwxr-xr-x | ext/spl/spl_array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 90b12b6967..621b8a73a2 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -57,12 +57,12 @@ ZEND_BEGIN_ARG_INFO(arginfo_array___construct, 0) ZEND_END_ARG_INFO(); static -ZEND_BEGIN_ARG_INFO(arginfo_array_offsetGet, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_array_offsetGet, 0, 0, 1) ZEND_ARG_INFO(0, index) ZEND_END_ARG_INFO(); static -ZEND_BEGIN_ARG_INFO(arginfo_array_offsetSet, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_array_offsetSet, 0, 0, 2) ZEND_ARG_INFO(0, index) ZEND_ARG_INFO(0, newval) ZEND_END_ARG_INFO(); |
