the F I X

LC_ALL is indeed a bad idea
This commit is contained in:
tildearrow 2024-05-29 03:17:12 -05:00
parent 6bc0d8d010
commit acdda759e4

View file

@ -491,7 +491,7 @@ int main(int argc, char** argv) {
#ifdef HAVE_LOCALE
const char* localeRet=NULL;
if ((localeRet=setlocale(LC_ALL,""))==NULL) {
if ((localeRet=setlocale(LC_MESSAGES,""))==NULL) {
logE("could not set locale!");
} else {
logV("locale: %s",localeRet);