From: Arun Persaud Date: Sun, 23 Mar 2014 17:49:20 +0000 (-0700) Subject: i3-nagbar: add missing newline when printing version information X-Git-Tag: 4.8~90 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=910875aea620072d03f94fa7d5a3bba94c1151cb;p=i3%2Fi3 i3-nagbar: add missing newline when printing version information --- diff --git a/i3-nagbar/main.c b/i3-nagbar/main.c index fea2e688..70ad93b0 100644 --- a/i3-nagbar/main.c +++ b/i3-nagbar/main.c @@ -341,7 +341,7 @@ int main(int argc, char *argv[]) { while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) { switch (o) { case 'v': - printf("i3-nagbar " I3_VERSION); + printf("i3-nagbar " I3_VERSION "\n"); return 0; case 'f': FREE(pattern);