From: Benno Schulenberg Date: Tue, 8 Oct 2013 15:29:20 +0000 (+0200) Subject: losetup: cut the remaining little block of help text into slices too X-Git-Tag: v2.24-rc2~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c47f25e8de3d4900b826d7ebf45526b7b4b81ad;p=thirdparty%2Futil-linux.git losetup: cut the remaining little block of help text into slices too Signed-off-by: Benno Schulenberg --- diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c index 9169f88644..5be3288485 100644 --- a/sys-utils/losetup.c +++ b/sys-utils/losetup.c @@ -368,12 +368,13 @@ static void usage(FILE *out) program_invocation_short_name); fputs(USAGE_OPTIONS, out); - fputs(_(" -a, --all list all used devices\n" - " -d, --detach [...] detach one or more devices\n" - " -D, --detach-all detach all used devices\n" - " -f, --find find first unused device\n" - " -c, --set-capacity resize device\n" - " -j, --associated list all devices associated with \n"), out); + fputs(_(" -a, --all list all used devices\n"), out); + fputs(_(" -d, --detach [...] detach one or more devices\n"), out); + fputs(_(" -D, --detach-all detach all used devices\n"), out); + fputs(_(" -f, --find find first unused device\n"), out); + fputs(_(" -c, --set-capacity resize device\n"), out); + fputs(_(" -j, --associated list all devices associated with \n"), out); + fputs(USAGE_SEPARATOR, out); fputs(_(" -o, --offset start at offset into file\n"), out);