]> granicus.if.org Git - neomutt/commitdiff
Fix rv assignment in mutt_window_mvprintw(). (closes #3964)
authorKevin McCarthy <kevin@8t8.us>
Mon, 4 Sep 2017 16:40:44 +0000 (09:40 -0700)
committerRichard Russon <rich@flatcap.org>
Tue, 5 Sep 2017 23:57:33 +0000 (00:57 +0100)
Mutt doesn't check the return value, so this wasn't causing a bug, but
was incorrect.

Thanks to dcb314 for reporting the issue.

curs_lib.c

index d737ca32b31d919b319a2d7142f972b4297702c5..a269d78332f6f61037df4b8a320e389dc87ff238 100644 (file)
@@ -740,7 +740,7 @@ int mutt_window_mvprintw(struct MuttWindow *win, int row, int col, const char *f
   va_list ap;
   int rv;
 
-  if ((rv = mutt_window_move(win, row, col) != ERR))
+  if ((rv = mutt_window_move (win, row, col)) != ERR)
   {
     va_start(ap, fmt);
     rv = vw_printw(stdscr, fmt, ap);