]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/ustring.c
ICU-8.11.4.tar.gz
[apple/icu.git] / icuSources / common / ustring.c
index 8c49959c8c195972f1276ebf09225b3ab08e9c70..cb7fd706309ec93c0481508f170175a4ae239db1 100644 (file)
@@ -990,7 +990,7 @@ U_CAPI int32_t   U_EXPORT2
 u_strlen(const UChar *s) 
 {
 #if U_SIZEOF_WCHAR_T == U_SIZEOF_UCHAR
-    return uprv_wcslen(s);
+    return (int32_t)uprv_wcslen(s);
 #else
     const UChar *t = s;
     while(*t != 0) {