diff options
author | Johannes Schlüter <johannes@php.net> | 2005-03-08 21:37:51 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2005-03-08 21:37:51 +0000 |
commit | 5cc18c99678ef70401432b58529ce231822eef9f (patch) | |
tree | db307f512a34a218528ef8c7cf099c07de40ea28 | |
parent | 9b4400830ff558e1a69c3f53e2fb4c95cbcc1f89 (diff) | |
download | php-git-5cc18c99678ef70401432b58529ce231822eef9f.tar.gz |
- MFH
-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 740ef34013..49b4473d6b 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -320,7 +320,7 @@ static void spl_array_write_dimension_ex(int check_inherited, zval *object, zval static void spl_array_write_dimension(zval *object, zval *offset, zval *value TSRMLS_DC) /* {{{ */ { - return spl_array_write_dimension_ex(1, object, offset, value TSRMLS_CC); + spl_array_write_dimension_ex(1, object, offset, value TSRMLS_CC); } /* }}} */ static void spl_array_unset_dimension_ex(int check_inherited, zval *object, zval *offset TSRMLS_DC) /* {{{ */ @@ -367,7 +367,7 @@ static void spl_array_unset_dimension_ex(int check_inherited, zval *object, zval static void spl_array_unset_dimension(zval *object, zval *offset TSRMLS_DC) /* {{{ */ { - return spl_array_unset_dimension_ex(1, object, offset TSRMLS_CC); + spl_array_unset_dimension_ex(1, object, offset TSRMLS_CC); } /* }}} */ static int spl_array_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty TSRMLS_DC) /* {{{ */ |