Suppress even more compiler warnings

This commit is contained in:
XANTRONIX Development 2023-12-27 13:19:19 -05:00
parent fb42e17ffd
commit 27bf0dcbac

View file

@ -35,7 +35,8 @@ static inline int _slot_set_interval(hexagram_schedule *schedule, size_t i) {
return _set_interval(schedule, _slot_interval_ns(schedule, i));
}
static void _ev_notify(hexagram_schedule *schedule) {
static void _ev_notify(union sigval sv) {
hexagram_schedule *schedule = sv.sival_ptr;
time_t last = -1;
while (schedule->current < schedule->count) {