From b1f9d44ba157d5530ccf090dbc66bee61e9a9f6c Mon Sep 17 00:00:00 2001 From: David Griffith Date: Fri, 26 Jan 2018 04:23:56 -0800 Subject: [PATCH] Add DUMMY macro call to calm the compiler. --- src/curses/ux_init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/curses/ux_init.c b/src/curses/ux_init.c index 3be38e5..50ad88a 100644 --- a/src/curses/ux_init.c +++ b/src/curses/ux_init.c @@ -991,10 +991,9 @@ does nothing. * is not done. * */ -static void sigint_handler(int dummy) +static void sigint_handler(int UNUSED(dummy)) { signal(SIGINT, sigint_handler); - // dummy = dummy; os_stop_sample(0); scrollok(stdscr, TRUE); scroll(stdscr); -- 2.34.1