From aed5e8a46d5464f303a8ccba7e044d91a448a4b4 Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Fri, 24 Aug 2018 14:11:21 +1000 Subject: [PATCH] Correct comments about locale --- src/utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils.c b/src/utils.c index c8361bb..ae62cb7 100644 --- a/src/utils.c +++ b/src/utils.c @@ -44,9 +44,9 @@ struct lconv lconvinfo; // localeconv() information, converted to wide strings wchar_t *decimal_point; // Locale's radix character wchar_t *thousands_sep; // Locale's thousands separator -wchar_t *currency_symbol; // Local currency symbol -wchar_t *mon_decimal_point; // Local monetary radix character -wchar_t *mon_thousands_sep; // Local monetary thousands separator +wchar_t *currency_symbol; // Locale's currency symbol +wchar_t *mon_decimal_point; // Locale's monetary radix character +wchar_t *mon_thousands_sep; // Locale's monetary thousands separator /************************************************************************