From 6153d2977d31f8b3710599f2e564a5e016dab355 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Fri, 10 Feb 2017 10:53:38 +0100 Subject: [PATCH] blkreset: remove "LBA" from usage() * "LBA" sounds confusing Reported-by: Damien Le Moal Signed-off-by: Karel Zak --- sys-utils/blkreset.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-utils/blkreset.c b/sys-utils/blkreset.c index c32f77ea9..76df5f6a5 100644 --- a/sys-utils/blkreset.c +++ b/sys-utils/blkreset.c @@ -83,8 +83,9 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fputs(_("Discard the content of sectors on a device.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -z, --zone LBA of start of zone to act upon (default = 0)\n" - " -c, --count number of zones to reset (default = 1)"), + fputs(_(" -z, --zone start sector of zone to act upon\n" + " (in 512-byte sectors, default is 0))\n" + " -c, --count number of zones to reset (default is 1)"), out); fputs(USAGE_SEPARATOR, out); fputs(USAGE_HELP, out);