From: Christian Heller Date: Sat, 15 Jun 2013 01:22:06 +0000 (+0200) Subject: Removed unused variable. X-Git-Tag: tce~1219 X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=9f63b159e74d698cd1330512827d69f09352aa1b;p=plomrogue Removed unused variable. --- diff --git a/windows.c b/windows.c index e25a5e2..485be31 100644 --- a/windows.c +++ b/windows.c @@ -215,7 +215,7 @@ extern void draw_all_wins (struct WinMeta * wmeta) { wnoutrefresh(wmeta->screen); werase(wmeta->pad.curses_win); if (wmeta->chain_start) { - uint16_t n_wins = 1, i, y; + uint16_t n_wins = 1, i; struct Win * win_p = wmeta->chain_start; while (0 != win_p->next) { win_p = win_p->next;