ICU-12868 Fixed invalid if condition in the recent fix in locmap.c
X-SVN-Rev: 39517
diff --git a/icu4c/source/common/locmap.c b/icu4c/source/common/locmap.c
index c03cd5c..1e28bd7 100644
--- a/icu4c/source/common/locmap.c
+++ b/icu4c/source/common/locmap.c
@@ -1022,7 +1022,7 @@
// GetLocaleInfo() maps such LCID to "ku". However, CLDR uses "ku" for
// Northern Kurdish and "ckb" for Central Kurdish. For this reason, we cannot
// use the Windows API to resolve locale ID for this specific case.
- if (hostid & 0x3FF != 0x92) {
+ if ((hostid & 0x3FF) != 0x92) {
int32_t tmpLen = 0;
char locName[157]; /* ULOC_FULLNAME_CAPACITY */