Fix typo in locale code

This commit is contained in:
Thomas Krijnen
2015-02-04 15:31:01 +00:00
parent 2da6f5428d
commit 0124034803
+1 -1
View File
@@ -53,7 +53,7 @@ void init_locale() {
#else
static locale_t locale = (locale_t) 0;
void init_locale() {
if (locale == (_locale_t) 0) {
if (locale == (locale_t) 0) {
locale = newlocale(LC_NUMERIC_MASK, "C", (locale_t) 0);
}
}