svn commit: r248125 - head/sys/arm/arm

Andrew Turner andrew at FreeBSD.org
Sun Mar 10 02:44:07 UTC 2013


Author: andrew
Date: Sun Mar 10 02:44:06 2013
New Revision: 248125
URL: http://svnweb.freebsd.org/changeset/base/248125

Log:
  Fix a typo where db_printf was spelt printf.

Modified:
  head/sys/arm/arm/db_trace.c

Modified: head/sys/arm/arm/db_trace.c
==============================================================================
--- head/sys/arm/arm/db_trace.c	Sun Mar 10 02:40:50 2013	(r248124)
+++ head/sys/arm/arm/db_trace.c	Sun Mar 10 02:44:06 2013	(r248125)
@@ -377,7 +377,7 @@ db_stack_trace_cmd(struct unwind_state *
 		index = db_find_index(state->start_pc);
 
 		if (index->insn == EXIDX_CANTUNWIND) {
-			printf("Unable to unwind\n");
+			db_printf("Unable to unwind\n");
 			break;
 		} else if (index->insn & (1 << 31)) {
 			/* The data is within the instruction */


More information about the svn-src-all mailing list