libgnt/libgnt

Fix coverity regression warnings
release-2.x.y v2.10.10
2014-05-12, Tomasz Wasilczyk
690a5fc4776f
Fix coverity regression warnings
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}