From: David Griffith Date: Fri, 26 Jan 2018 12:23:56 +0000 (-0800) Subject: Add DUMMY macro call to calm the compiler. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=b1f9d44ba157d5530ccf090dbc66bee61e9a9f6c;p=liskon_frotz.git Add DUMMY macro call to calm the compiler. --- 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);