From 4879057c01009e03bd0450adee4b0c8221d67eb9 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Mon, 10 Feb 2014 13:29:34 +0100 Subject: [PATCH] miraclectl: add 80-char marker Add a marker with 80-char width so the help text will get proper sizes. Signed-off-by: David Herrmann --- src/miraclectl.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/miraclectl.c b/src/miraclectl.c index df1af85..753fa7a 100644 --- a/src/miraclectl.c +++ b/src/miraclectl.c @@ -486,6 +486,10 @@ static int verb_set_link_name(sd_bus *bus, char **args, unsigned int n) static int help(void) { + /* + * 80-char barrier: + * 01234567890123456789012345678901234567890123456789012345678901234567890123456789 + */ printf("%s [OPTIONS...] {COMMAND} ...\n\n" "Send control command to or query the MiracleCast manager.\n\n" " -h --help Show this help\n" @@ -500,6 +504,10 @@ static int help(void) " remove-link LINK... Stop managing the given link\n" " set-link-name LINK NAME Set friendly-name of given link\n" , program_invocation_short_name); + /* + * 80-char barrier: + * 01234567890123456789012345678901234567890123456789012345678901234567890123456789 + */ return 0; }