diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-07-18 02:43:28 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-07-18 02:43:28 +0000 |
commit | 1da0eb00b64cf96fafeda15abecc0ea97c01cfc7 (patch) | |
tree | 07ce3426901e09feb49ab2c3174d982a7fc02646 /sys/arch/mvme88k | |
parent | d682261e1331abf1c2f9fa2d157d5b8f51360fdd (diff) |
remove trailing newline in panic(9); ok millert@ and deraadt@
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/dev/bussw.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/pcctwo.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/dev/syscon.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/mvme88k/dev/bussw.c b/sys/arch/mvme88k/dev/bussw.c index 67adc2d4667..1258509c9c3 100644 --- a/sys/arch/mvme88k/dev/bussw.c +++ b/sys/arch/mvme88k/dev/bussw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bussw.c,v 1.15 2004/07/30 19:02:05 miod Exp $ */ +/* $OpenBSD: bussw.c,v 1.16 2005/07/18 02:43:25 fgsch Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * @@ -178,7 +178,7 @@ busswintr_establish(int vec, struct intrhand *ih, const char *name) { #ifdef DIAGNOSTIC if (vec < 0 || vec >= BS_NVEC) - panic("busswintr_establish: illegal vector 0x%x\n", vec); + panic("busswintr_establish: illegal vector 0x%x", vec); #endif return intr_establish(BS_VECBASE + vec, ih, name); diff --git a/sys/arch/mvme88k/dev/pcctwo.c b/sys/arch/mvme88k/dev/pcctwo.c index 1666c8e2009..f1b82b345e4 100644 --- a/sys/arch/mvme88k/dev/pcctwo.c +++ b/sys/arch/mvme88k/dev/pcctwo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcctwo.c,v 1.26 2004/07/30 19:02:06 miod Exp $ */ +/* $OpenBSD: pcctwo.c,v 1.27 2005/07/18 02:43:25 fgsch Exp $ */ /* * Copyright (c) 1995 Theo de Raadt * All rights reserved. @@ -188,7 +188,7 @@ pcctwointr_establish(int vec, struct intrhand *ih, const char *name) { #ifdef DIAGNOSTIC if (vec < 0 || vec >= PCC2_NVEC) - panic("pcctwo_establish: illegal vector 0x%x\n", vec); + panic("pcctwo_establish: illegal vector 0x%x", vec); #endif return intr_establish(PCC2_VECBASE + vec, ih, name); diff --git a/sys/arch/mvme88k/dev/syscon.c b/sys/arch/mvme88k/dev/syscon.c index 4c74cccebec..4a09e3998fd 100644 --- a/sys/arch/mvme88k/dev/syscon.c +++ b/sys/arch/mvme88k/dev/syscon.c @@ -1,4 +1,4 @@ -/* $OpenBSD: syscon.c,v 1.22 2004/08/02 08:35:00 miod Exp $ */ +/* $OpenBSD: syscon.c,v 1.23 2005/07/18 02:43:25 fgsch Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * All rights reserved. @@ -165,7 +165,7 @@ sysconintr_establish(int vec, struct intrhand *ih, const char *name) { #ifdef DIAGNOSTIC if (vec < 0 || vec >= SYSCON_NVEC) - panic("sysconintr_establish: illegal vector 0x%x\n", vec); + panic("sysconintr_establish: illegal vector 0x%x", vec); #endif return intr_establish(SYSCON_VECT + vec, ih, name); |