]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/ulist.cpp
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / common / ulist.cpp
index b3f3fd8b7e859124c0464f65895bc6ea91ee785e..c5180431c31b75c28d21bfdd92f77507b433caf9 100644 (file)
@@ -252,7 +252,7 @@ U_CAPI const char * U_EXPORT2 ulist_next_keyword_value(UEnumeration *en, int32_t
 
     s = (const char *)ulist_getNext((UList *)(en->context));
     if (s != NULL && resultLength != NULL) {
-        *resultLength = uprv_strlen(s);
+        *resultLength = static_cast<int32_t>(uprv_strlen(s));
     }
     return s;
 }