From: Karel Zak Date: Thu, 14 Apr 2011 15:16:30 +0000 (+0200) Subject: mesg: add \n to usage() output X-Git-Tag: v2.20-rc1~328 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7a4aa9857b977504edafd1fe74e50f26f9a510e;p=thirdparty%2Futil-linux.git mesg: add \n to usage() output Signed-off-by: Karel Zak --- diff --git a/term-utils/mesg.c b/term-utils/mesg.c index c77c53958c..1c96a412d9 100644 --- a/term-utils/mesg.c +++ b/term-utils/mesg.c @@ -71,7 +71,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) _("\nOptions:\n" " -v, --verbose explain what is being done\n" " -V, --version output version information and exit\n" - " -h, --help output help screen and exit\n")); + " -h, --help output help screen and exit\n\n")); exit(out == stderr ? MESG_EXIT_FAILURE : EXIT_SUCCESS); }