From a5a93cff8202a365f1c511295ab8174cd6727fe6 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 20 Feb 2013 11:19:42 +0100 Subject: interface: Fix unused variable errors Caused by some curses functions being macros --- src/interface.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/interface.c') diff --git a/src/interface.c b/src/interface.c index d6ab8b0..cdfaba2 100644 --- a/src/interface.c +++ b/src/interface.c @@ -42,6 +42,8 @@ static void allocate_volume_bar(struct interface *ifc) { gint x, y, max_x, max_y; + (void) y; + (void) max_y; if (ifc->volume_bar) return; -- cgit