From 4828d484c7725f72f5ac1f4e2c930dad7a32ebe0 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 8 Aug 2022 20:11:39 -0400 Subject: [PATCH] oh dear forgot the newlines; --- HostMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HostMain.cpp b/HostMain.cpp index 26cc49ab..d9030a56 100644 --- a/HostMain.cpp +++ b/HostMain.cpp @@ -126,7 +126,7 @@ void fatal(const char* msg, ...) void usage(const char* message, const char* arg) { - ::fprintf(stdout, __PROG_NAME__ " %s (" DESCR_DMR DESCR_P25 DESCR_NXDN "CW Id, Network) (built %s)", __VER__, __BUILD__); + ::fprintf(stdout, __PROG_NAME__ " %s (" DESCR_DMR DESCR_P25 DESCR_NXDN "CW Id, Network) (built %s)\n", __VER__, __BUILD__); if (message != NULL) { ::fprintf(stderr, "%s: ", g_progExe.c_str()); ::fprintf(stderr, message, arg); @@ -183,7 +183,7 @@ int checkArgs(int argc, char* argv[]) p += 2; } else if (IS("-v")) { - ::fprintf(stdout, __PROG_NAME__ " %s (" DESCR_DMR DESCR_P25 DESCR_NXDN "CW Id, Network) (built %s)", __VER__, __BUILD__); + ::fprintf(stdout, __PROG_NAME__ " %s (" DESCR_DMR DESCR_P25 DESCR_NXDN "CW Id, Network) (built %s)\n", __VER__, __BUILD__); if (argc == 2) exit(EXIT_SUCCESS); }