diff options
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; |