mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
fixes a compile error; invalid type argument of '->'.
This commit is contained in:
parent
411cadae7b
commit
e355ad550c
1 changed files with 1 additions and 1 deletions
|
|
@ -5969,7 +5969,7 @@ bwn_lo_write(struct bwn_mac *mac, struct bwn_loctl *ctl)
|
|||
{
|
||||
uint16_t value;
|
||||
|
||||
KASSERT(mac->mac_phy->type == BWN_PHYTYPE_G,
|
||||
KASSERT(mac->mac_phy.type == BWN_PHYTYPE_G,
|
||||
("%s:%d: fail", __func__, __LINE__));
|
||||
|
||||
value = (uint8_t) (ctl->q);
|
||||
|
|
|
|||
Loading…
Reference in a new issue