From be2e79b0b0f83dda04a9d46425ad84109c5d9f1c Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Tue, 8 Feb 2022 18:08:53 +0100 Subject: [PATCH] [menu] const in add_cmdline_bool_option --- src/dialogs/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs/menu.c b/src/dialogs/menu.c index 1a5680f6..78d4cd33 100644 --- a/src/dialogs/menu.c +++ b/src/dialogs/menu.c @@ -621,7 +621,7 @@ free_history_lists(void) static void -add_cmdline_bool_option(struct string *string, char *name) +add_cmdline_bool_option(struct string *string, const char *name) { if (!get_cmd_opt_bool(name)) return; add_to_string(string, " -");