aboutsummaryrefslogtreecommitdiffstats
path: root/sway/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/main.c')
-rw-r--r--sway/main.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sway/main.c b/sway/main.c
index 473a0990..1261a7ce 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -57,10 +57,10 @@ int main(int argc, char **argv) {
57 static struct option long_options[] = { 57 static struct option long_options[] = {
58 {"help", no_argument, NULL, 'h'}, 58 {"help", no_argument, NULL, 'h'},
59 {"config", required_argument, NULL, 'c'}, 59 {"config", required_argument, NULL, 'c'},
60 {"validate", no_argument, &validate, 1}, 60 {"validate", no_argument, NULL, 'C'},
61 {"debug", no_argument, &debug, 1}, 61 {"debug", no_argument, NULL, 'd'},
62 {"version", no_argument, NULL, 'v'}, 62 {"version", no_argument, NULL, 'v'},
63 {"verbose", no_argument, &verbose, 1}, 63 {"verbose", no_argument, NULL, 'V'},
64 {"get-socketpath", no_argument, NULL, 'p'}, 64 {"get-socketpath", no_argument, NULL, 'p'},
65 {0, 0, 0, 0} 65 {0, 0, 0, 0}
66 }; 66 };
@@ -87,8 +87,6 @@ int main(int argc, char **argv) {
87 break; 87 break;
88 } 88 }
89 switch (c) { 89 switch (c) {
90 case 0: // Flag
91 break;
92 case 'h': // help 90 case 'h': // help
93 fprintf(stdout, "%s", usage); 91 fprintf(stdout, "%s", usage);
94 exit(EXIT_SUCCESS); 92 exit(EXIT_SUCCESS);