]> git.sur5r.net Git - i3/i3/commitdiff
i3-nagbar: add missing newline when printing version information
authorArun Persaud <arun@nubati.net>
Sun, 23 Mar 2014 17:49:20 +0000 (10:49 -0700)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 23 Mar 2014 17:56:53 +0000 (18:56 +0100)
i3-nagbar/main.c

index fea2e688c13e8119d70fc1a361d7b541f87fc92e..70ad93b0b1c385f7f776e3f0d43ba60893c11131 100644 (file)
@@ -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);