summaryrefslogtreecommitdiff
path: root/deps/icu-small/source/tools/genrb/reslist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/icu-small/source/tools/genrb/reslist.cpp')
-rw-r--r--deps/icu-small/source/tools/genrb/reslist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/icu-small/source/tools/genrb/reslist.cpp b/deps/icu-small/source/tools/genrb/reslist.cpp
index 2e04bbce21..0493347ebe 100644
--- a/deps/icu-small/source/tools/genrb/reslist.cpp
+++ b/deps/icu-small/source/tools/genrb/reslist.cpp
@@ -1395,7 +1395,7 @@ SRBRoot::compactKeys(UErrorCode &errorCode) {
int32_t offset;
suffix = keys + map[j].oldpos;
for (suffixLimit = suffix; *suffixLimit != 0; ++suffixLimit) {}
- offset = (int32_t)(keyLimit - key) - (suffixLimit - suffix);
+ offset = static_cast<int32_t>((keyLimit - key) - (suffixLimit - suffix));
if (offset < 0) {
break; /* suffix cannot be longer than the original */
}