ICU-21803 Fix Windows build break on MSYS2 with GCC 11

This commit is contained in:
Jeff Genovy 2021-10-21 12:02:08 -07:00
parent 5c4bb5fa1b
commit 58bee95ab6
2 changed files with 2 additions and 2 deletions

View file

@ -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, "@");

View file

@ -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, "@");