diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-06-25 21:33:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-06-25 21:33:22 +0000 |
commit | f583c4a4988b6b47fae0213722d1b754da1a4b42 (patch) | |
tree | b731741fccf5c1d2d685d2c08e58891ec27a8b6b /sys/arch/alpha/pci/sio_pic.c | |
parent | 77fdf164ce21db35a2244d823037a3841518c8ff (diff) |
No \n at the end of a panic() message... I thought all occurences had been
squashed already.
Diffstat (limited to 'sys/arch/alpha/pci/sio_pic.c')
-rw-r--r-- | sys/arch/alpha/pci/sio_pic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/pci/sio_pic.c b/sys/arch/alpha/pci/sio_pic.c index f62441381a7..a130ab719b3 100644 --- a/sys/arch/alpha/pci/sio_pic.c +++ b/sys/arch/alpha/pci/sio_pic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sio_pic.c,v 1.20 2002/03/14 01:26:27 millert Exp $ */ +/* $OpenBSD: sio_pic.c,v 1.21 2002/06/25 21:33:21 miod Exp $ */ /* $NetBSD: sio_pic.c,v 1.28 2000/06/06 03:10:13 thorpej Exp $ */ /*- @@ -439,7 +439,7 @@ sio_intr_string(v, irq) static char irqstr[12]; /* 8 + 2 + NULL + sanity */ if (irq == 0 || irq >= ICU_LEN || irq == 2) - panic("sio_intr_string: bogus isa irq 0x%x\n", irq); + panic("sio_intr_string: bogus isa irq 0x%x", irq); sprintf(irqstr, "isa irq %d", irq); return (irqstr); @@ -461,7 +461,7 @@ sio_intr_evcnt(v, irq) { if (irq == 0 || irq >= ICU_LEN || irq == 2) - panic("sio_intr_evcnt: bogus isa irq 0x%x\n", irq); + panic("sio_intr_evcnt: bogus isa irq 0x%x", irq); return (alpha_shared_intr_evcnt(sio_intr, irq)); } |