summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/dev/obio.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-11 05:12:41 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-11 05:12:41 +0000
commitb3067fd524234e263e58b215d0fb24d414bf1c34 (patch)
tree5c1576265dded5700ab387af81051fabd39f3396 /sys/arch/sun3/dev/obio.c
parent9ee95b4b405b050512cf782b508d774f4601a6b5 (diff)
panic prints a newline for you, don't do it in the panic string
Diffstat (limited to 'sys/arch/sun3/dev/obio.c')
-rw-r--r--sys/arch/sun3/dev/obio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sun3/dev/obio.c b/sys/arch/sun3/dev/obio.c
index a6b6bc4120b..5160324edf3 100644
--- a/sys/arch/sun3/dev/obio.c
+++ b/sys/arch/sun3/dev/obio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: obio.c,v 1.6 1997/01/16 04:03:51 kstailey Exp $ */
+/* $OpenBSD: obio.c,v 1.7 1999/01/11 05:12:02 millert Exp $ */
/* $NetBSD: obio.c,v 1.23 1996/11/20 18:56:56 gwr Exp $ */
/*-
@@ -144,7 +144,7 @@ obio_submatch(parent, vcf, aux)
/* Now call the match function of the potential child. */
submatch = cf->cf_attach->ca_match;
if (submatch == NULL)
- panic("obio_submatch: no match function for: %s\n",
+ panic("obio_submatch: no match function for: %s",
cf->cf_driver->cd_name);
return ((*submatch)(parent, vcf, aux));