diff options
| author | Anatol Belski <ab@php.net> | 2014-08-18 19:55:05 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-08-18 19:55:05 +0200 |
| commit | a5ffd245bd02b1c60b04a35ac734a7d69815601f (patch) | |
| tree | 76fa9ed7459a5bc603e298759f02f76ad7e0b194 /ext | |
| parent | e49e163a9ed7d4e38f9ab724003c46c9f1ea2cb4 (diff) | |
| download | php-git-a5ffd245bd02b1c60b04a35ac734a7d69815601f.tar.gz | |
fixed splfixedarray
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/spl/spl_fixedarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_fixedarray.c b/ext/spl/spl_fixedarray.c index 6109b35b6d..990805bd4a 100644 --- a/ext/spl/spl_fixedarray.c +++ b/ext/spl/spl_fixedarray.c @@ -761,7 +761,7 @@ SPL_METHOD(SplFixedArray, setSize) spl_fixedarray_object *intern; php_int_t size; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &size) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "i", &size) == FAILURE) { return; } |
