diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-03-17 20:23:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-03-17 20:23:06 +0000 |
commit | 3d63f7b2dc2509cd95ec4096ead8757c5992577a (patch) | |
tree | bc68a4fe8fc92a49cd486428aaae8bc5fa21ecbb /sys | |
parent | b2cebd87c3c75836e2b58e054c75460a4fbce927 (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.c | 4 |
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"); |