diff options
| author | Jim Meyering <jim@meyering.net> | 2001-11-23 20:10:25 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 2001-11-23 20:10:25 +0000 |
| commit | b78de3e724522e63bc82ef2f2214d329e69ea545 (patch) | |
| tree | 9a0759d9c581522e4a3bd10fc46277db4465f2f6 /src/sync.c | |
| parent | *** empty log message *** (diff) | |
| download | coreutils-b78de3e724522e63bc82ef2f2214d329e69ea545.tar.gz coreutils-b78de3e724522e63bc82ef2f2214d329e69ea545.zip | |
Split usage strings so that --help and --version
descriptions are alone in their own string.
Diffstat (limited to 'src/sync.c')
| -rw-r--r-- | src/sync.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sync.c b/src/sync.c index 1afc5d927..dcade1c8e 100644 --- a/src/sync.c +++ b/src/sync.c @@ -42,12 +42,14 @@ usage (int status) else { printf (_("Usage: %s [OPTION]\n"), program_name); - printf (_("\ + fputs (_("\ Force changed blocks to disk, update the super block.\n\ \n\ +"), stdout); + fputs (_("\ --help display this help and exit\n\ --version output version information and exit\n\ -")); +"), stdout); puts (_("\nReport bugs to <bug-fileutils@gnu.org>.")); } exit (status); |
