diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 19:25:28 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 20:49:36 +0200 |
commit | 6db8d4f829553f61822a794f94c55270e5478a13 (patch) | |
tree | 03a63a6e8bf452020d20b1963dd064fed95dc446 /ext/json/json.c | |
parent | bdc4f235179abb3f1fac08144a875d3cc9e0a242 (diff) | |
download | php-git-6db8d4f829553f61822a794f94c55270e5478a13.tar.gz |
's' works with size_t round 3
Diffstat (limited to 'ext/json/json.c')
-rw-r--r-- | ext/json/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/json.c b/ext/json/json.c index ffaefa1c9d..3c5e22cf5c 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -799,7 +799,7 @@ static PHP_FUNCTION(json_encode) static PHP_FUNCTION(json_decode) { char *str; - int str_len; + size_t str_len; zend_bool assoc = 0; /* return JS objects as PHP objects by default */ zend_long depth = JSON_PARSER_DEFAULT_DEPTH; zend_long options = 0; |