mirror of
https://github.com/swaywm/sway.git
synced 2024-11-05 16:03:11 +00:00
fix: remove redundant empty statement in main.c
This semi-colon looks like a typo. Luckily, it has no effect on the code as it's treated as an empty statement leading the switch case. Really straightforward nitpick change, was just something I was confused by when reading over the code.
This commit is contained in:
parent
b69d637f7a
commit
8d8a21c9c3
|
@ -294,7 +294,7 @@ int main(int argc, char **argv) {
|
||||||
case 'V': // verbose
|
case 'V': // verbose
|
||||||
verbose = true;
|
verbose = true;
|
||||||
break;
|
break;
|
||||||
case 'p': ; // --get-socketpath
|
case 'p': // --get-socketpath
|
||||||
if (getenv("SWAYSOCK")) {
|
if (getenv("SWAYSOCK")) {
|
||||||
printf("%s\n", getenv("SWAYSOCK"));
|
printf("%s\n", getenv("SWAYSOCK"));
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
|
|
Loading…
Reference in a new issue