summaryrefslogtreecommitdiff
path: root/src/df.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-05-14 09:12:43 +0000
committerJim Meyering <jim@meyering.net>2003-05-14 09:12:43 +0000
commite83a04a9d753931bc816b28cff5407674481987a (patch)
treea83bb8b96a2135c14ece869f14ac5d72766d9429 /src/df.c
parent5413c2bbae8cc6a88aabdd6b731a1bcda6a0ef3f (diff)
downloadcoreutils-e83a04a9d753931bc816b28cff5407674481987a.tar.xz
(usage): Don't use `,' as the thousands separator
in e.g. 1,000,000 and 1,048,576. Instead, do this: `SIZE may be ..., MB 1000*1000, M 1024*1024 and so on...'
Diffstat (limited to 'src/df.c')
-rw-r--r--src/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/df.c b/src/df.c
index 06eefc9ef..0a9574d92 100644
--- a/src/df.c
+++ b/src/df.c
@@ -741,7 +741,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\
fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\n\
SIZE may be (or may be an integer optionally followed by) one of following:\n\
-kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n\
+kB 1000, K 1024, MB 1000*1000, M 1024*1024, and so on for G, T, P, E, Z, Y.\n\
"), stdout);
printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
}