changeset 470:167b66942c24

Remove newline from start of the banner.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 04 Jun 2018 02:54:31 +0300
parents fe5b803ae449
children 02a2a46f5485
files th_util.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)