The branch main has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=ac51711cab6e55a99ee0a565fe0ae30c0305c854
commit ac51711cab6e55a99ee0a565fe0ae30c0305c854 Author: Zhenlei Huang <z...@freebsd.org> AuthorDate: 2024-12-09 17:14:08 +0000 Commit: Zhenlei Huang <z...@freebsd.org> CommitDate: 2024-12-09 17:14:08 +0000 netinet: Use NULL for VNET_SYSINIT's last arg, which is a pointer type MFC after: 3 days --- sys/netinet/if_ether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 543e6a3922fb..81f4b901f21b 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1506,7 +1506,7 @@ vnet_arp_init(void) #endif } VNET_SYSINIT(vnet_arp_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_SECOND, - vnet_arp_init, 0); + vnet_arp_init, NULL); #ifdef VIMAGE /*