changeset 1689:ef644e3f891f

Remove newline from start of the banner.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 04 Jun 2018 03:10:38 +0300
parents 51ce7edd5054
children 12d4da502fa4
files src/dmlib.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dmlib.c	Fri Jun 01 02:27:07 2018 +0300
+++ b/src/dmlib.c	Mon Jun 04 03:10:38 2018 +0300
@@ -22,7 +22,7 @@
 
 void dmPrintBanner(FILE *outFile, const char *name, const char *usage)
 {
-    fprintf(outFile, "\n%s", dmProgName);
+    fprintf(outFile, "%s", dmProgName);
     if (dmProgVersion != NULL)
         fprintf(outFile, " v%s", dmProgVersion);
     if (dmProgDesc != NULL)