From 58bee95ab6e9b767c799898585eafcab5525629a Mon Sep 17 00:00:00 2001 From: Jeff Genovy <29107334+jefgen@users.noreply.github.com> Date: Thu, 21 Oct 2021 12:02:08 -0700 Subject: [PATCH] ICU-21803 Fix Windows build break on MSYS2 with GCC 11 --- icu4c/source/test/intltest/windttst.cpp | 2 +- icu4c/source/test/intltest/winnmtst.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/test/intltest/windttst.cpp b/icu4c/source/test/intltest/windttst.cpp index 92d6f6721e7..9fec23aca4b 100644 --- a/icu4c/source/test/intltest/windttst.cpp +++ b/icu4c/source/test/intltest/windttst.cpp @@ -156,7 +156,7 @@ void Win32DateTimeTest::testLocales(DateFormatTest *log) wdLength = GetDateFormatW(lcidRecords[i].lcid, DATE_LONGDATE, &winNow, NULL, wdBuffer, UPRV_LENGTHOF(wdBuffer)); wtLength = GetTimeFormatW(lcidRecords[i].lcid, 0, &winNow, NULL, wtBuffer, UPRV_LENGTHOF(wtBuffer)); - if (uprv_strchr(localeID, '@') > 0) { + if (uprv_strchr(localeID, '@')) { uprv_strcat(localeID, ";"); } else { uprv_strcat(localeID, "@"); diff --git a/icu4c/source/test/intltest/winnmtst.cpp b/icu4c/source/test/intltest/winnmtst.cpp index 84fc278c129..953fb5d2c38 100644 --- a/icu4c/source/test/intltest/winnmtst.cpp +++ b/icu4c/source/test/intltest/winnmtst.cpp @@ -303,7 +303,7 @@ void Win32NumberTest::testLocales(NumberFormatTest *log) strcpy(localeID, lcidRecords[i].localeID); - if (strchr(localeID, '@') > 0) { + if (strchr(localeID, '@')) { strcat(localeID, ";"); } else { strcat(localeID, "@");