From 504c03ecf8d5f205e740cd698a1c3b6d3303cb12 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 21 May 2017 17:47:39 +0100 Subject: [PATCH] uuidgen: slice up the usage text Signed-off-by: Sami Kerola --- misc-utils/uuidgen.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/misc-utils/uuidgen.c b/misc-utils/uuidgen.c index 911fead72e..4c1d47d5e1 100644 --- a/misc-utils/uuidgen.c +++ b/misc-utils/uuidgen.c @@ -28,11 +28,11 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) fputs(_("Create a new UUID value.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -r, --random generate random-based uuid\n" - " -t, --time generate time-based uuid\n" - " -V, --version output version information and exit\n" - " -h, --help display this help and exit\n\n"), out); - + fputs(_(" -r, --random generate random-based uuid\n"), out); + fputs(_(" -t, --time generate time-based uuid\n"), out); + fputs(USAGE_SEPARATOR, out); + fputs(USAGE_HELP, out); + fputs(USAGE_VERSION, out); fprintf(out, USAGE_MAN_TAIL("uuidgen(1)")); exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS); } -- 2.47.3