We slept for the wrong amount of seconds.
static int snooze(void)
{
int ret;
- unsigned sleep_time;
if (conf.so_time_arg <= 0)
return 1;
- sleep_time = conf.so_time_arg;
if (open_and_get_mixer_channel() < conf.so_vol_arg)
ret = open_and_set_mixer_channel(conf.so_vol_arg);
else
return ret;
client_cmd("pause");
PARA_NOTICE_LOG("%d seconds snooze time...\n", conf.snooze_time_arg);
- sleep(sleep_time);
+ sleep(conf.snooze_time_arg);
client_cmd("play");
return fade(conf.si_vol_arg, conf.si_time_arg);
}