fix warnings.
[apps/madmutt.git] / lib-ui / curs_lib.c
index 71be011..aa029ed 100644 (file)
@@ -152,8 +152,8 @@ void mutt_edit_file(const char *data)
 int mutt_yesorno (const char *msg, int def)
 {
   event_t ch;
-  char *yes = _("yes");
-  char *no = _("no");
+  const char *yes = _("yes");
+  const char *no = _("no");
   char *answer_string;
   ssize_t answer_string_len;
   char *expr;
@@ -460,7 +460,7 @@ void mutt_curs_set (int cursor)
 }
 #endif
 
-int mutt_multi_choice (char *prompt, char *letters)
+int mutt_multi_choice (const char *prompt, const char *letters)
 {
   event_t ch;
   int choice;