From df41979afc58f372348a4f54244d30d771403dac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Fri, 28 Aug 2020 15:20:18 +0200 Subject: Ignore wmove return value Found by Coverity --- InfoScreen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'InfoScreen.c') diff --git a/InfoScreen.c b/InfoScreen.c index 93120006..5c586bdd 100644 --- a/InfoScreen.c +++ b/InfoScreen.c @@ -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; -- cgit v1.2.3