diff options
author | Manuel Stoeckl <code@mstoeckl.com> | 2021-02-03 21:50:25 -0500 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-02-04 09:49:06 +0100 |
commit | 169b90f90b518b2ca2d4bc445d6bfb05b57a20df (patch) | |
tree | ecea1f1fbb78c90da53bf9e3c2a01427d4a8a4fd | |
parent | 8f2cd3236f0f7e0ae8fcd9d1447cc583d17de5c5 (diff) |
Make command line option lists const
-rw-r--r-- | sway/main.c | 2 | ||||
-rw-r--r-- | swaybar/main.c | 2 | ||||
-rw-r--r-- | swaymsg/main.c | 2 | ||||
-rw-r--r-- | swaynag/config.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sway/main.c b/sway/main.c index 0c219fb3..84f8eb6e 100644 --- a/sway/main.c +++ b/sway/main.c @@ -245,7 +245,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 struct option long_options[] = { + static const struct option long_options[] = { {"help", no_argument, NULL, 'h'}, {"config", required_argument, NULL, 'c'}, {"validate", no_argument, NULL, 'C'}, diff --git a/swaybar/main.c b/swaybar/main.c index 5c36d66b..a44c1e63 100644 --- a/swaybar/main.c +++ b/swaybar/main.c @@ -18,7 +18,7 @@ int main(int argc, char **argv) { char *socket_path = NULL; bool debug = false; - static struct option long_options[] = { + static const struct option long_options[] = { {"help", no_argument, NULL, 'h'}, {"version", no_argument, NULL, 'v'}, {"socket", required_argument, NULL, 's'}, diff --git a/swaymsg/main.c b/swaymsg/main.c index 60536e48..574d3b75 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -343,7 +343,7 @@ int main(int argc, char **argv) { sway_log_init(SWAY_INFO, NULL); - static struct option long_options[] = { + static const struct option long_options[] = { {"help", no_argument, NULL, 'h'}, {"monitor", no_argument, NULL, 'm'}, {"pretty", no_argument, NULL, 'p'}, diff --git a/swaynag/config.c b/swaynag/config.c index ca7f4eb2..c6b4e431 100644 --- a/swaynag/config.c +++ b/swaynag/config.c @@ -51,7 +51,7 @@ int swaynag_parse_options(int argc, char **argv, struct swaynag *swaynag, TO_PADDING_BTN, }; - static struct option opts[] = { + static const struct option opts[] = { {"button", required_argument, NULL, 'b'}, {"button-no-terminal", required_argument, NULL, 'B'}, {"button-dismiss", required_argument, NULL, 'z'}, |