summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-03-22 18:55:21 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-03-22 18:55:21 +0000
commit35dd6c7fe34fb7c7f20c55d57f526f32ac9d412f (patch)
tree446ea6ef6a41eaff554b87216d0d7eb0b2da587e
parent4d61b5e3dbeedaff83e17a67a8651f909ded1f4f (diff)
Change yet another kernel message starting with `<'.
-rw-r--r--sys/arch/mips64/mips64/db_machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips64/mips64/db_machdep.c b/sys/arch/mips64/mips64/db_machdep.c
index d8596a700fc..5c387035d91 100644
--- a/sys/arch/mips64/mips64/db_machdep.c
+++ b/sys/arch/mips64/mips64/db_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.c,v 1.9 2005/05/22 19:40:51 art Exp $ */
+/* $OpenBSD: db_machdep.c,v 1.10 2007/03/22 18:55:20 miod Exp $ */
/*
* Copyright (c) 1998-2003 Opsycon AB (www.opsycon.se)
@@ -408,9 +408,9 @@ done:
if (subr == (long)k_intr || subr == (long)k_general) {
if (subr == (long)k_intr)
- (*pr)("<-> KERNEL INTERRUPT <->\n");
+ (*pr)("(KERNEL INTERRUPT)\n");
else
- (*pr)("<-> KERNEL TRAP <->\n");
+ (*pr)("(KERNEL TRAP)\n");
sp = *(register_t *)sp;
pc = ((struct trap_frame *)sp)->pc;
ra = ((struct trap_frame *)sp)->ra;