diff options
Diffstat (limited to 'ext/mbstring/php_unicode.c')
-rw-r--r-- | ext/mbstring/php_unicode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/php_unicode.c b/ext/mbstring/php_unicode.c index ec6d9987f3..f095d314bc 100644 --- a/ext/mbstring/php_unicode.c +++ b/ext/mbstring/php_unicode.c @@ -236,7 +236,7 @@ PHPAPI char *php_unicode_convert_case(int case_mode, char *srcstr, size_t srclen char *unicode, *newstr; size_t unicode_len; unsigned long *unicode_ptr; - int i; + size_t i; unicode = php_mb_convert_encoding(srcstr, srclen, NATIVE_UNICODE_ENCODING, src_encoding, &unicode_len TSRMLS_CC); if (unicode == NULL) |