diff options
Diffstat (limited to 'src/lingot-config.c')
| -rw-r--r-- | src/lingot-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lingot-config.c b/src/lingot-config.c index 9886ac8..e228540 100644 --- a/src/lingot-config.c +++ b/src/lingot-config.c @@ -145,7 +145,7 @@ void lingot_config_save(LingotConfig* config, char* filename) lc_all = setlocale(LC_ALL, NULL); // duplicate the string, as the next call to setlocale will destroy it if (lc_all) lc_all = strdup(lc_all); - setlocale(LC_ALL, "POSIX"); + setlocale(LC_ALL, "C"); if ((fp = fopen(filename, "w")) == NULL) { |
