diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-02-25 06:00:28 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-02-25 06:00:28 +0000 |
commit | b038093e9dae9a963de5b6f9104dcabccd061c9b (patch) | |
tree | bba1f4c823ac6f56dbbb3433cf1ab44c991a5378 /sys/arch | |
parent | 9ae0423850e22ed688a76db1d86a6a64e49fe6b9 (diff) |
Stop loggin stray interrupts when we say we do
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/isa/isa_machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/isa_machdep.c b/sys/arch/i386/isa/isa_machdep.c index 0660042436d..7078c27bfb6 100644 --- a/sys/arch/i386/isa/isa_machdep.c +++ b/sys/arch/i386/isa/isa_machdep.c @@ -162,7 +162,7 @@ isa_strayintr(irq) */ if (intrstray[irq]++ <= 5) log(LOG_ERR, "stray interrupt %d%s\n", irq, - intrstray[irq] >= 5 ? "; stopped logging" : ""); + intrstray[irq] > 5 ? "; stopped logging" : ""); } int fastvec; |