summaryrefslogtreecommitdiff
path: root/ext/mbstring/php_unicode.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2002-10-01 10:16:40 +0000
committerZeev Suraski <zeev@php.net>2002-10-01 10:16:40 +0000
commit2c4b6fff6d1317edbc0834d3facd113f9c41b9cf (patch)
tree050efa522b6fa30c4fe0c25c8d3b0a5e050b2f87 /ext/mbstring/php_unicode.c
parent2c7440537d9cb7f0b3a2968ce32401c556dd58ce (diff)
downloadphp-git-2c4b6fff6d1317edbc0834d3facd113f9c41b9cf.tar.gz
Fix warnings
Diffstat (limited to 'ext/mbstring/php_unicode.c')
-rw-r--r--ext/mbstring/php_unicode.c2
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)