From: Martin Mares Date: Sat, 29 Mar 2014 22:22:31 +0000 (+0100) Subject: Silence warning about unused variable X-Git-Tag: v1.7~3 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=7f9f1699540d9726c9131ca65277f04d7ab223f5;p=checkmail.git Silence warning about unused variable --- diff --git a/cm.c b/cm.c index 2d9762f..8b2b03f 100644 --- a/cm.c +++ b/cm.c @@ -976,6 +976,7 @@ redraw_line(int i) int xx, yy; getyx(stdscr, yy, xx); int remains = COLS-1-xx; + (void) yy; char snip[256]; build_snippet(snip, snip + sizeof(snip) - 1, b);