tidy mutt_yesorno()
authorRichard Russon <rich@flatcap.org>
Thu, 19 Sep 2019 14:42:48 +0000 (15:42 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 19 Sep 2019 15:27:00 +0000 (16:27 +0100)
curs_lib.c

index 5bad79026306918a1cbe04908adfa6746080d579..7d22ed80c3de90545792ee2531b41995b2dfc0db 100644 (file)
@@ -387,8 +387,8 @@ enum QuadOption mutt_yesorno(const char *msg, enum QuadOption def)
 
       /* maxlen here is sort of arbitrary, so pick a reasonable upper bound */
       trunc_msg_len = mutt_wstr_trunc(
-          msg, 4 * prompt_lines * MuttMessageWindow->cols,
-          prompt_lines * MuttMessageWindow->cols - answer_string_wid, NULL);
+          msg, (size_t) 4 * prompt_lines * MuttMessageWindow->cols,
+          ((size_t) prompt_lines * MuttMessageWindow->cols) - answer_string_wid, NULL);
 
       mutt_window_move(MuttMessageWindow, 0, 0);
       SET_COLOR(MT_COLOR_PROMPT);