aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2022-02-03 18:53:31 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2022-02-03 18:56:03 +0000
commit529575be27c13dd64c10b4c917ce41ccc08937c3 (patch)
treef0017f534498cebce987bc967ebb11577d578746
parent87c5d39f77bc8c38738a6dc200f711f4418c5018 (diff)
downloadsrc-529575be27c13dd64c10b4c917ce41ccc08937c3.tar.gz
src-529575be27c13dd64c10b4c917ce41ccc08937c3.zip
lnumeric.c: replace some space*8 by tabs
Reported by: brooks Sponsored by: The FreeBSD Foundation MFC after: 1 week
-rw-r--r--lib/libc/locale/lnumeric.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/locale/lnumeric.c b/lib/libc/locale/lnumeric.c
index 32c4b9880c1e..253fb955f485 100644
--- a/lib/libc/locale/lnumeric.c
+++ b/lib/libc/locale/lnumeric.c
@@ -46,8 +46,8 @@ extern const char *__fix_locale_grouping_str(const char *);
static char numempty[] = { CHAR_MAX, '\0' };
static const struct lc_numeric_T _C_numeric_locale = {
- ".", /* decimal_point */
- "", /* thousands_sep */
+ ".", /* decimal_point */
+ "", /* thousands_sep */
numempty /* grouping */
};
@@ -90,7 +90,7 @@ int
__numeric_load_locale(const char *name)
{
return (numeric_load_locale(&__xlocale_global_numeric,
- &__xlocale_global_locale.using_numeric_locale,
+ &__xlocale_global_locale.using_numeric_locale,
&__xlocale_global_locale.numeric_locale_changed, name));
}