From 2c84ecabdd3091988b91b3ee4e719319ce5c98d3 Mon Sep 17 00:00:00 2001 From: Sascha Kruse Date: Sat, 26 Jan 2013 00:01:19 +0100 Subject: [PATCH] fix typo in --version output add a space between description and version --- dunst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dunst.c b/dunst.c index 7b43dbd..2aede18 100644 --- a/dunst.c +++ b/dunst.c @@ -1906,7 +1906,7 @@ void usage(int exit_status) void print_version(void) { - printf("Dunst - A customizable and lightweight notification-daemon%s\n", + printf("Dunst - A customizable and lightweight notification-daemon %s\n", VERSION); exit(EXIT_SUCCESS); }