From c806f5edbbd5383c807b18ad5157b189c90fd6c7 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 19 Nov 2017 02:59:15 +0100 Subject: [PATCH] Add missing newline to --version output. --- dss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dss.c b/dss.c index 1d7f7fb..bcaeff2 100644 --- a/dss.c +++ b/dss.c @@ -1778,7 +1778,7 @@ static void handle_version_and_help(void) else if (OPT_GIVEN(DSS, HELP)) txt = lls_short_help(CMD_PTR(DSS)); else if (OPT_GIVEN(DSS, VERSION)) - txt = dss_strdup(VERSION_STRING); + txt = make_message("%s\n", VERSION_STRING); else return; printf("%s", txt); -- 2.39.2