diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 15:31:48 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 20:49:31 +0200 |
commit | 3234480827b27ff5d3469a732167afd289632a96 (patch) | |
tree | 485ed0c4f5d35107a65ab193f3bc7c27806fbfca /ext/spl/spl_array.c | |
parent | ee552b628c2d9f9455ac85d7791b4b4e8e4ddeb2 (diff) | |
download | php-git-3234480827b27ff5d3469a732167afd289632a96.tar.gz |
first show to make 's' work with size_t
Diffstat (limited to 'ext/spl/spl_array.c')
-rw-r--r-- | ext/spl/spl_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 2a841a5cc4..84c3714da2 100644 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -1776,7 +1776,7 @@ SPL_METHOD(Array, unserialize) spl_array_object *intern = Z_SPLARRAY_P(getThis()); char *buf; - int buf_len; + size_t buf_len; const unsigned char *p, *s; php_unserialize_data_t var_hash; zval members, zflags; |