mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
ICU-21803 Fix Windows build break on MSYS2 with GCC 11
This commit is contained in:
parent
5c4bb5fa1b
commit
58bee95ab6
2 changed files with 2 additions and 2 deletions
|
@ -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, "@");
|
||||
|
|
|
@ -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, "@");
|
||||
|
|
Loading…
Add table
Reference in a new issue