From: Sebastian Harl Date: Sun, 21 Dec 2008 13:12:46 +0000 (+0100) Subject: src/fb.c: Do not indent the strings of the usage output. X-Git-Url: https://git.tokkee.org/?p=template.git;a=commitdiff_plain;h=ba380e9ff72c5d0d8d24417aecc532c1800e2a18 src/fb.c: Do not indent the strings of the usage output. --- diff --git a/src/fb.c b/src/fb.c index c3d4c86..d5add03 100644 --- a/src/fb.c +++ b/src/fb.c @@ -40,13 +40,14 @@ static void exit_usage(char *name, int status) { - printf("Usage: %s \n" + printf( +"Usage: %s \n" - "\nOptions:\n" - " -h display this help and exit\n" - " -V display the version number and copyright\n" +"\nOptions:\n" +" -h display this help and exit\n" +" -V display the version number and copyright\n" - "\nfb "VERSION", http://tokkee.org\n", basename(name)); +"\nfb "VERSION", http://tokkee.org\n", basename(name)); exit(status); } /* exit_usage */