]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
blkdiscard: slice up the recently changed usage text
authorBenno Schulenberg <bensberg@justemail.net>
Wed, 9 Mar 2016 10:55:01 +0000 (11:55 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 9 Mar 2016 11:11:18 +0000 (12:11 +0100)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
sys-utils/blkdiscard.c

index ff2cee3558b875280142ae4178affd7d5b2006ab..c83e12f20d437a76d00efc510deceb3a1b1d3e7b 100644 (file)
@@ -87,16 +87,17 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
        fputs(_("Discard the content of sectors on a device.\n"), out);
 
        fputs(USAGE_OPTIONS, out);
-       fputs(_(" -o, --offset <num>  offset in bytes to discard from\n"
-               " -l, --length <num>  length of bytes to discard from the offset\n"
-               " -p, --step <num>    size of the discard iterations within the offset\n"
-               " -s, --secure        perform secure discard\n"
-               " -z, --zeroout       zero-fill rather than discard\n"
-               " -v, --verbose       print aligned length and offset\n"),
-               out);
+       fputs(_(" -o, --offset <num>  offset in bytes to discard from\n"), out);
+       fputs(_(" -l, --length <num>  length of bytes to discard from the offset\n"), out);
+       fputs(_(" -p, --step <num>    size of the discard iterations within the offset\n"), out);
+       fputs(_(" -s, --secure        perform secure discard\n"), out);
+       fputs(_(" -z, --zeroout       zero-fill rather than discard\n"), out);
+       fputs(_(" -v, --verbose       print aligned length and offset\n"), out);
+
        fputs(USAGE_SEPARATOR, out);
        fputs(USAGE_HELP, out);
        fputs(USAGE_VERSION, out);
+
        fprintf(out, USAGE_MAN_TAIL("blkdiscard(8)"));
        exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
 }