Trivial fix (forget to remove semicolon) in gettext.cpp

pull/14677/head
Muhammad Rifqi Priyo Susanto 2024-05-16 21:00:00 +07:00
parent b23042839b
commit bceef8f529
1 changed files with 4 additions and 4 deletions

View File

@ -151,10 +151,10 @@ static void MSVC_LocaleWorkaround(int argc, char* argv[])
errorstream
<< "*******************************************************" << '\n'
<< "CMD: " << app_name << '\n';
<< "Failed to restart with current locale: ";
<< porting::ConvertError(e) << '\n';
<< "Expect language to be broken!" << '\n';
<< "CMD: " << app_name << '\n'
<< "Failed to restart with current locale: "
<< porting::ConvertError(e) << '\n'
<< "Expect language to be broken!" << '\n'
<< "*******************************************************" << std::endl;
}
}