From c71f5a568fa3de8bd1e89bb70cea102bc13a5b85 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 31 May 2017 10:58:17 +0200 Subject: cfdisk: fix compiler warning Signed-off-by: Karel Zak --- disk-utils/cfdisk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'disk-utils/cfdisk.c') diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 72e96c582..37f998bab 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(); -- cgit v1.2.3-55-g7522