From 6f162034d0fc9a49ab1dcf2b773fa9677215cba3 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sat, 17 Sep 2011 12:52:32 +0200 Subject: build-sys: fixes to USAGE_* macros The USAGE_BEGIN_TAIL is removed as unnecessary. In between command specific options and --help & --version USAGE_SEPARATOR is inserted. For now the separator is empty line. The USAGE_MAN_TAIL is changed to take an argument. Signed-off-by: Sami Kerola --- sys-utils/ipcmk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys-utils/ipcmk.c') diff --git a/sys-utils/ipcmk.c b/sys-utils/ipcmk.c index c91908bde..f4bee83f7 100644 --- a/sys-utils/ipcmk.c +++ b/sys-utils/ipcmk.c @@ -71,10 +71,10 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) fputs(_(" -Q, --queue create message queue\n"), out); fputs(_(" -p, --mode permission for the resource (default is 0644)\n"), out); + fprintf(out, USAGE_SEPARATOR); fprintf(out, USAGE_HELP); fprintf(out, USAGE_VERSION); - fprintf(out, USAGE_BEGIN_TAIL); - fprintf(out, USAGE_MAN_TAIL, "ipcmk(1)"); + fprintf(out, USAGE_MAN_TAIL("ipcmk(1)")); exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS); } -- cgit v1.2.3-55-g7522