From a2ab37dbc3a874bdcec02986ae824cbe4555d98c Mon Sep 17 00:00:00 2001 From: speedie Date: Mon, 8 May 2023 17:31:32 +0200 Subject: [PATCH] end with \n --- libs/stream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/stream.c b/libs/stream.c index a666b4a..e24767b 100644 --- a/libs/stream.c +++ b/libs/stream.c @@ -198,13 +198,13 @@ int parsemarkup(int index) { // spmenu:version if (!strncmp("version", items[index].ex, strlen("version"))) { - fprintf(stdout, "spmenu version %s", VERSION); + fprintf(stdout, "spmenu version %s\n", VERSION); exit(0); } // spmenu:license if (!strncmp("license", items[index].ex, strlen("license"))) { - fprintf(stdout, "spmenu is licensed under the MIT license. See the included LICENSE file for more information."); + fprintf(stdout, "spmenu is licensed under the MIT license. See the included LICENSE file for more information.\n"); exit(0); } }