i3-nagbar: add missing newline when printing version information
Patch status: merged
Patch by Arun Persaud
To apply this patch, use:
curl http://cr.i3wm.org/patch/493/raw.patch | git am
b/i3-nagbar/main.c
| 14 |
@@ -341,7 +341,7 @@ int main(int argc, char *argv[]) {
|
| 15 |
while ((o = getopt_long(argc, argv, options_string, long_options, &option_index)) != -1) {
|
| 16 |
switch (o) {
|
| 17 |
case 'v': |
| 18 |
- printf("i3-nagbar " I3_VERSION);
|
| 19 |
+ printf("i3-nagbar " I3_VERSION "\n");
|
| 20 |
return 0; |
| 21 |
case 'f': |
| 22 |
FREE(pattern); |