mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Mark osi __unused so this compiles cleanly on FreeBSD
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
83a4c3f99e
commit
30f7722958
1 changed files with 4 additions and 0 deletions
|
|
@ -38,7 +38,11 @@ static timer_t t;
|
|||
static bool fail = true;
|
||||
|
||||
static void
|
||||
#if defined(__FreeBSD__)
|
||||
timer_signal_handler(int signo, siginfo_t *si, void *osi __unused)
|
||||
#else
|
||||
timer_signal_handler(int signo, siginfo_t *si, void *osi)
|
||||
#endif
|
||||
{
|
||||
timer_t *tp;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue