mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
nd6: make nd6_timer_ch static
nd6_timer_ch is only used in file local context. There is no need to export it, so make it static. MFC after: 3 weeks Sponsored by: Netflix
This commit is contained in:
parent
f77a6dbd1e
commit
6db6527385
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ static int nd6_need_cache(struct ifnet *);
|
|||
VNET_DEFINE_STATIC(struct callout, nd6_slowtimo_ch);
|
||||
#define V_nd6_slowtimo_ch VNET(nd6_slowtimo_ch)
|
||||
|
||||
VNET_DEFINE(struct callout, nd6_timer_ch);
|
||||
VNET_DEFINE_STATIC(struct callout, nd6_timer_ch);
|
||||
#define V_nd6_timer_ch VNET(nd6_timer_ch)
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue