diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2002-10-13 18:26:14 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2002-10-13 18:26:14 +0000 |
commit | 335991831456c021b43fd741d7cec55846a65d3c (patch) | |
tree | 5099460aabbda9d35161631e7e830e4240dfd716 /sys/arch/macppc | |
parent | 6731d0fd3f98eba6b09192084b2267da62a9ffaf (diff) |
Remove more '\n's from panic() statements. From Chris Kuethe.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/machdep.c b/sys/arch/macppc/macppc/machdep.c index 60600f2cd08..852ab217f91 100644 --- a/sys/arch/macppc/macppc/machdep.c +++ b/sys/arch/macppc/macppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.44 2002/09/23 04:25:52 drahn Exp $ */ +/* $OpenBSD: machdep.c,v 1.45 2002/10/13 18:26:12 krw Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -1064,7 +1064,7 @@ ppc_intr_establish(lcv, ih, type, level, func, arg, name) ppc_configed_intr_cnt++; } else { panic("ppc_intr_establish called before interrupt controller" - " configured: driver %s too many interrupts\n", name); + " configured: driver %s too many interrupts", name); } /* disestablish is going to be tricky to supported for these :-) */ return (void *)ppc_configed_intr_cnt; |