git: 005b6caf268c - stable/14 - netinet: Use NULL for VNET_SYSINIT's last arg, which is a pointer type
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 15 Dec 2024 02:21:35 UTC
The branch stable/14 has been updated by zlei:
URL: https://cgit.FreeBSD.org/src/commit/?id=005b6caf268c959e90d838a318f384656923977d
commit 005b6caf268c959e90d838a318f384656923977d
Author: Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2024-12-09 17:14:08 +0000
Commit: Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2024-12-15 02:20:54 +0000
netinet: Use NULL for VNET_SYSINIT's last arg, which is a pointer type
MFC after: 3 days
(cherry picked from commit ac51711cab6e55a99ee0a565fe0ae30c0305c854)
---
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 a14671528f18..0e4f28a06342 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -1508,7 +1508,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
/*