Quiet gcc warning about unused parameter

force_rescan didn't use the signal handler functions signum parameter
Tell gcc to shut up

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
This commit is contained in:
Neil Horman 2013-01-29 11:03:08 -05:00
parent cbeda20d89
commit edb06fcbb9

View file

@ -220,6 +220,7 @@ static void handler(int signum)
static void force_rescan(int signum)
{
(void)signum;
if (cycle_count)
need_rescan = 1;
}