From: Karel Zak Date: Wed, 31 May 2017 08:58:17 +0000 (+0200) Subject: cfdisk: fix compiler warning X-Git-Tag: v2.30~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c71f5a568fa3de8bd1e89bb70cea102bc13a5b85;p=thirdparty%2Futil-linux.git cfdisk: fix compiler warning Signed-off-by: Karel Zak --- diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 72e96c5820..37f998babb 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -1471,7 +1471,7 @@ static int ui_menu_move(struct cfdisk *cf, int key) assert(cf); assert(cf->menu); - if (key == ERR) + if (key == (int) ERR) return 0; /* ignore errors */ m = cf->menu; @@ -1756,7 +1756,7 @@ static ssize_t ui_get_string(const char *prompt, defined(HAVE_LIBNCURSESW) && defined(HAVE_WIDECHAR) if (get_wch(&c) == ERR) { #else - if ((c = getch()) == ERR) { + if ((c = getch()) == (wint_t) ERR) { #endif if (ui_resize) { resize();