Fix a typo where db_printf was spelt printf.

This commit is contained in:
Andrew Turner 2013-03-10 02:44:06 +00:00
parent d80f56e15e
commit 0234dfbfdc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=248125

View File

@ -377,7 +377,7 @@ db_stack_trace_cmd(struct unwind_state *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 */