Correct function arguments for SYSUNINITs.

Obtained from:	p4 @180886
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Bjoern A. Zeeb 2016-01-22 18:26:58 +00:00
parent f2cf0121ca
commit 9ff1c4634f

View File

@ -270,7 +270,7 @@ udp_discardcb(struct udpcb *up)
#ifdef VIMAGE
static void
udp_destroy(void)
udp_destroy(void *unused __unused)
{
in_pcbinfo_destroy(&V_udbinfo);
@ -279,7 +279,7 @@ udp_destroy(void)
VNET_SYSUNINIT(udp, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH, udp_destroy, NULL);
static void
udplite_destroy(void)
udplite_destroy(void *unused __unused)
{
in_pcbinfo_destroy(&V_ulitecbinfo);