summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/i18n/ulocdata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/icu-small/source/i18n/ulocdata.cpp')
-rw-r--r--deps/icu-small/source/i18n/ulocdata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/icu-small/source/i18n/ulocdata.cpp b/deps/icu-small/source/i18n/ulocdata.cpp
index 551f6c64ed..f651fee6fc 100644
--- a/deps/icu-small/source/i18n/ulocdata.cpp
+++ b/deps/icu-small/source/i18n/ulocdata.cpp
@@ -372,7 +372,7 @@ ulocdata_getLocaleSeparator(ULocaleData *uld,
p1=u_strstr(separator, sub1);
if (p0!=NULL && p1!=NULL && p0<=p1) {
separator = (const UChar *)p0 + subLen;
- len = p1 - separator;
+ len = static_cast<int32_t>(p1 - separator);
/* Desired separator is no longer zero-terminated; handle that if necessary */
if (len < resultCapacity) {
u_strncpy(result, separator, len);