diff options
Diffstat (limited to 'sys/net/if_vlan_var.h')
-rw-r--r-- | sys/net/if_vlan_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_vlan_var.h b/sys/net/if_vlan_var.h index 8fbe10ca1ac9..2cbcc21e40d3 100644 --- a/sys/net/if_vlan_var.h +++ b/sys/net/if_vlan_var.h @@ -35,7 +35,7 @@ #ifdef _KERNEL struct vlan_mc_entry { struct ether_addr mc_addr; - SLIST_ENTRY(vlan_mc_entry) mc_entries; + SLIST_ENTRY(struct vlan_mc_entry) mc_entries; }; struct ifvlan { @@ -46,7 +46,7 @@ struct ifvlan { u_int16_t ifvm_proto; /* encapsulation ethertype */ u_int16_t ifvm_tag; /* tag to apply on packets leaving if */ } ifv_mib; - SLIST_HEAD(__vlan_mchead, vlan_mc_entry) vlan_mc_listhead; + SLIST_HEAD(__vlan_mchead, struct vlan_mc_entry) vlan_mc_listhead; }; #define ifv_if ifv_ac.ac_if #define ifv_tag ifv_mib.ifvm_tag |