summaryrefslogtreecommitdiff
path: root/sys/dev/tc
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2002-10-12 01:09:46 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2002-10-12 01:09:46 +0000
commitfd4371e84bfe456363d8522471f8e03b42c3f36e (patch)
treea45b0b37f4702c1340cc44dce62c3b2b2e2ea809 /sys/dev/tc
parentc7bb58ffd3ad6fc8b402a37bee511cb1b92325de (diff)
Remove more '\n's from panic() statements. Both trailing and leading.
Diff generated by Chris Kuethe.
Diffstat (limited to 'sys/dev/tc')
-rw-r--r--sys/dev/tc/tcds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/tc/tcds.c b/sys/dev/tc/tcds.c
index a69e5c7805f..3098e0deb6e 100644
--- a/sys/dev/tc/tcds.c
+++ b/sys/dev/tc/tcds.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcds.c,v 1.1 2002/05/02 22:56:06 miod Exp $ */
+/* $OpenBSD: tcds.c,v 1.2 2002/10/12 01:09:44 krw Exp $ */
/* $NetBSD: tcds.c,v 1.3 2001/11/13 06:26:10 lukem Exp $ */
/*-
@@ -176,7 +176,7 @@ tcdsattach(parent, self, aux)
td = tcds_lookup(ta->ta_modname);
if (td == NULL)
- panic("\ntcdsattach: impossible");
+ panic("tcdsattach: impossible");
printf(": TurboChannel Dual SCSI");
if (td->td_flags & TCDSF_BASEBOARD)
@@ -394,7 +394,7 @@ tcds_intrnull(val)
void *val;
{
- panic("tcds_intrnull: uncaught TCDS intr for chip %lu\n",
+ panic("tcds_intrnull: uncaught TCDS intr for chip %lu",
(u_long)val);
}