diff options
| author | Nate Williams <nate@FreeBSD.org> | 1997-10-23 02:25:14 +0000 |
|---|---|---|
| committer | Nate Williams <nate@FreeBSD.org> | 1997-10-23 02:25:14 +0000 |
| commit | 63ea538413c26f44537a2286ae7e34462f09a095 (patch) | |
| tree | c1f4eef7e0ea97030bc8998d2d0d50d12c1a2dab /sys | |
| parent | 93bb0560226111ba9230cbd9ba87396bc8354d22 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/pccard/pccard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c index 9da0e4b209a2..cfda8715590c 100644 --- a/sys/pccard/pccard.c +++ b/sys/pccard/pccard.c @@ -475,7 +475,7 @@ pccard_alloc_intr(u_int imask, inthand2_t *hand, int unit, int irq; unsigned int mask; - for (irq = ICU_LEN; irq > 0; irq--) { + for (irq = 1; irq < ICU_LEN; irq++) { mask = 1ul << irq; if (!(mask & imask)) continue; |
