]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(usage): Don't use `,' as the thousands separator
authorJim Meyering <jim@meyering.net>
Wed, 14 May 2003 09:13:26 +0000 (09:13 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 14 May 2003 09:13:26 +0000 (09:13 +0000)
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...'

src/du.c

index 2b8722d5b1c306b0d5737b5a630a9b0820da30d8..f2819b6ffcdaf81c26c0229fbcaf32fc95f1057a 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -214,7 +214,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);
     }