mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
arge: just use 1U since it's a 32 bit unsigned destination value.
This commit is contained in:
parent
a73d5cc09f
commit
70487bd29b
1 changed files with 1 additions and 1 deletions
|
|
@ -2492,7 +2492,7 @@ arge_intr(void *arg)
|
|||
|
||||
#ifdef ARGE_DEBUG
|
||||
for (i = 0; i < 32; i++) {
|
||||
if (status & (1 << i)) {
|
||||
if (status & (1U << i)) {
|
||||
sc->intr_stats.count[i]++;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue