1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-17 15:57:32 +03:00

[-Wunused-but-set-variable] vt52_curses.cc

This commit is contained in:
Suresh Sundriyal 2015-04-01 21:58:32 -07:00
parent fe6f3ec1ae
commit e6d97795fe

View File

@ -247,6 +247,7 @@ void vt52_curses::map_output(const char *output, int len)
char * buffer;
getmaxyx(this->vc_window, height, width);
(void)height; //suppress unused warnings.
buffer = (char *)alloca(width);
this->vc_x = 0;