summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2007-03-17 20:23:06 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2007-03-17 20:23:06 +0000
commit3d63f7b2dc2509cd95ec4096ead8757c5992577a (patch)
treebc68a4fe8fc92a49cd486428aaae8bc5fa21ecbb /sys
parentb2cebd87c3c75836e2b58e054c75460a4fbce927 (diff)
Do not start lines printed by the kernel with '<' so that syslog won't get
confused.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sh/sh/db_trace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sh/sh/db_trace.c b/sys/arch/sh/sh/db_trace.c
index dca9fcb7f49..5e01584a975 100644
--- a/sys/arch/sh/sh/db_trace.c
+++ b/sys/arch/sh/sh/db_trace.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_trace.c,v 1.3 2006/11/04 00:01:24 mickey Exp $ */
+/* $OpenBSD: db_trace.c,v 1.4 2007/03/17 20:23:05 miod Exp $ */
/* $NetBSD: db_trace.c,v 1.19 2006/01/21 22:10:59 uwe Exp $ */
/*-
@@ -98,7 +98,7 @@ db_stack_trace_print(db_expr_t addr, int have_addr, db_expr_t count,
frame = tf->tf_r14;
callpc = tf->tf_spc;
- (*print)("<EXPEVT %03x; SSR=%08x> at ",
+ (*print)("(EXPEVT %03x; SSR=%08x) at ",
tf->tf_expevt, tf->tf_ssr);
db_printsym(callpc, DB_STGY_PROC, print);
(*print)("\n");