diff options
author | Anatol Belski <ab@php.net> | 2015-02-09 10:47:39 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-02-09 10:47:39 +0100 |
commit | fc5b349789240268a0eb80612eb61889fd80d818 (patch) | |
tree | 8b2caa8c2f71651a771ff2f2c2f210ea4cae2bad /ext/json/json_encoder.c | |
parent | a1208b4726e0c3438e6b08ce26e70a6c9d0d52bc (diff) | |
download | php-git-fc5b349789240268a0eb80612eb61889fd80d818.tar.gz |
size_t vs int
Diffstat (limited to 'ext/json/json_encoder.c')
-rw-r--r-- | ext/json/json_encoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/json_encoder.c b/ext/json/json_encoder.c index f219b50263..8fabf77d83 100644 --- a/ext/json/json_encoder.c +++ b/ext/json/json_encoder.c @@ -239,7 +239,7 @@ static void php_json_encode_array(smart_str *buf, zval *val, int options) /* {{{ } /* }}} */ -static int php_json_utf8_to_utf16(unsigned short *utf16, char utf8[], int len) /* {{{ */ +static int php_json_utf8_to_utf16(unsigned short *utf16, char utf8[], size_t len) /* {{{ */ { size_t pos = 0, us; int j, status; |