# HG changeset patch # User Matti Hamalainen # Date 1528070071 -10800 # Node ID 167b66942c24402dae02296e4ccf6bc4363de4c9 # Parent fe5b803ae449df97de9befa536fa7750226c4b84 Remove newline from start of the banner. diff -r fe5b803ae449 -r 167b66942c24 th_util.c --- a/th_util.c Mon Jun 04 02:41:27 2018 +0300 +++ b/th_util.c Mon Jun 04 02:54:31 2018 +0300 @@ -38,7 +38,7 @@ void th_print_banner(FILE *outFile, const char *name, const char *usage) { - fprintf(outFile, "\n%s", th_prog_name); + fprintf(outFile, "%s", th_prog_name); if (th_prog_version != NULL) fprintf(outFile, " v%s", th_prog_version); if (th_prog_desc != NULL)