diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_pcb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index 80fefc9..0227798 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -296,12 +296,12 @@ void inp_wlock_assert(struct inpcb *); void inp_wunlock_assert(struct inpcb *); #else static __inline void -inp_wlock_assert(struct inpcb *inp) +inp_wlock_assert(struct inpcb *inp __unused) { } static __inline void -inp_wunlock_assert(struct inpcb *inp) +inp_wunlock_assert(struct inpcb *inp __unused) { } #endif |