From 70487bd29bd703b544946fc63fe0d269ae2a8d5a Mon Sep 17 00:00:00 2001 From: Adrian Chadd Date: Fri, 30 Oct 2015 23:09:08 +0000 Subject: [PATCH] arge: just use 1U since it's a 32 bit unsigned destination value. --- sys/mips/atheros/if_arge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/atheros/if_arge.c b/sys/mips/atheros/if_arge.c index 00b92418bd3..654f68a531c 100644 --- a/sys/mips/atheros/if_arge.c +++ b/sys/mips/atheros/if_arge.c @@ -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]++; } }