mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
routing: Use NULL for VNET_SYS[UN]INIT's last arg, which is a pointer type
MFC after: 3 days
(cherry picked from commit 12b2d68bed)
This commit is contained in:
parent
744cdf0037
commit
f7e0cd3376
1 changed files with 2 additions and 2 deletions
|
|
@ -322,7 +322,7 @@ vnet_rtables_init(const void *unused __unused)
|
|||
RTABLES_UNLOCK();
|
||||
}
|
||||
VNET_SYSINIT(vnet_rtables_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_FOURTH,
|
||||
vnet_rtables_init, 0);
|
||||
vnet_rtables_init, NULL);
|
||||
|
||||
#ifdef VIMAGE
|
||||
static void
|
||||
|
|
@ -361,7 +361,7 @@ rtables_destroy(const void *unused __unused)
|
|||
#endif
|
||||
}
|
||||
VNET_SYSUNINIT(rtables_destroy, SI_SUB_PROTO_DOMAIN, SI_ORDER_FIRST,
|
||||
rtables_destroy, 0);
|
||||
rtables_destroy, NULL);
|
||||
#endif
|
||||
|
||||
static inline struct rib_head *
|
||||
|
|
|
|||
Loading…
Reference in a new issue