Annotate unused variables

Signed-off-by: Thomas Graf <tgraf@suug.ch>
This commit is contained in:
Thomas Graf
2014-08-25 01:06:01 +02:00
parent e3d208905d
commit a36136ec4d
3 changed files with 4 additions and 2 deletions

View File

@ -148,7 +148,7 @@ static void put_line(const char *fmt, ...)
{
va_list args;
char buf[2048];
int x, y;
int x, y __unused__;
memset(buf, 0, sizeof(buf));
getyx(stdscr, y, x);