mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
Fix an incorrect sizeof()
PR: kern/176238 Submitted by: Christoph Mallon <christoph.mallon@gmx.de>
This commit is contained in:
parent
1b9c9ab29a
commit
feb043c69c
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ if_ath_alq_post_intr(struct if_ath_alq *alq, uint32_t status,
|
|||
intr.intr_state[i] = htobe32(state[i]);
|
||||
intr.intr_syncstate = htobe32(sync_state);
|
||||
|
||||
if_ath_alq_post(alq, ATH_ALQ_INTR_STATUS, sizeof(&intr),
|
||||
if_ath_alq_post(alq, ATH_ALQ_INTR_STATUS, sizeof(intr),
|
||||
(const char *) &intr);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue