mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 09:21:28 +00:00
Fix small coding style issue
This commit is contained in:
parent
1ca5453678
commit
34cc909efb
|
@ -310,7 +310,9 @@ int main(int argc, char **argv) {
|
||||||
if(*image_path != ':') {
|
if(*image_path != ':') {
|
||||||
fprintf(stderr, "--window-image should be in form '<window #>:<image path>'\n");
|
fprintf(stderr, "--window-image should be in form '<window #>:<image path>'\n");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
} else image_path++;
|
} else {
|
||||||
|
image_path++;
|
||||||
|
}
|
||||||
|
|
||||||
list_arbitrary_insert(images.a, index, image_path);
|
list_arbitrary_insert(images.a, index, image_path);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue