Ignore wmove return value

Found by Coverity
This commit is contained in:
Christian Göttsche 2020-08-28 15:20:18 +02:00
parent 2d14269bcd
commit df41979afc
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ void InfoScreen_drawTitled(InfoScreen* this, const char* fmt, ...) {
va_start(ap, fmt);
attrset(CRT_colors[METER_TEXT]);
mvhline(0, 0, ' ', COLS);
wmove(stdscr, 0, 0);
(void) wmove(stdscr, 0, 0);
vw_printw(stdscr, fmt, ap);
attrset(CRT_colors[DEFAULT_COLOR]);
this->display->needsRedraw = true;