arge: just use 1U since it's a 32 bit unsigned destination value.

This commit is contained in:
Adrian Chadd 2015-10-30 23:09:08 +00:00
parent a73d5cc09f
commit 70487bd29b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=290214

View file

@ -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]++;
}
}