Code

src/fb.c: Do not indent the strings of the usage output.
authorSebastian Harl <sh@tokkee.org>
Sun, 21 Dec 2008 13:12:46 +0000 (14:12 +0100)
committerSebastian Harl <sh@tokkee.org>
Sun, 21 Dec 2008 13:50:28 +0000 (14:50 +0100)
src/fb.c

index c3d4c869502a238277bec823c5dac59c6b248130..d5add03eb5d342fa14ec802797e85f5264abd993 100644 (file)
--- a/src/fb.c
+++ b/src/fb.c
 static void
 exit_usage(char *name, int status)
 {
-       printf("Usage: %s <options>\n"
+       printf(
+"Usage: %s <options>\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 */