aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-01-31 10:39:12 +0100
committerFurkan Sahin <furkan-dev@proton.me>2022-01-31 10:39:12 +0100
commitb7eaa493454e9e586eed4114f9fb8103e7a85cf0 (patch)
treede360c3b9b0f0a56f821df0b06589bc2eb03eb7a
parent366263ed20dbf63ff4b1e6d605a572e38a381fd5 (diff)
Use bools for CLI flags
-rw-r--r--sway/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sway/main.c b/sway/main.c
index b6f8a8bf..cbe6e603 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -241,7 +241,7 @@ static void handle_wlr_log(enum wlr_log_importance importance,
}
int main(int argc, char **argv) {
- static int verbose = 0, debug = 0, validate = 0, allow_unsupported_gpu = 0;
+ static bool verbose = false, debug = false, validate = false, allow_unsupported_gpu = false;
static const struct option long_options[] = {
{"help", no_argument, NULL, 'h'},
@@ -286,23 +286,23 @@ int main(int argc, char **argv) {
config_path = strdup(optarg);
break;
case 'C': // validate
- validate = 1;
+ validate = true;
break;
case 'd': // debug
- debug = 1;
+ debug = true;
break;
case 'D': // extended debug options
enable_debug_flag(optarg);
break;
case 'u':
- allow_unsupported_gpu = 1;
+ allow_unsupported_gpu = true;
break;
case 'v': // version
printf("sway version " SWAY_VERSION "\n");
exit(EXIT_SUCCESS);
break;
case 'V': // verbose
- verbose = 1;
+ verbose = true;
break;
case 'p': ; // --get-socketpath
if (getenv("SWAYSOCK")) {