summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/unwarminder/backtrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unwarminder/backtrace.c b/lib/unwarminder/backtrace.c
index 294b7f66f4..47898a9054 100644
--- a/lib/unwarminder/backtrace.c
+++ b/lib/unwarminder/backtrace.c
@@ -77,7 +77,7 @@ static Boolean CliReport(void *data, Int32 address)
77 unsigned *line = (unsigned *)data; 77 unsigned *line = (unsigned *)data;
78 78
79 79
80 lcd_putsf(0, (*line)++, " %c: 0x%08x", 80 lcd_putsf(0, (*line)++, " %c: %08x",
81 (address & 0x1) ? 'T' : 'A', 81 (address & 0x1) ? 'T' : 'A',
82 address & (~0x1)); 82 address & (~0x1));
83 lcd_update(); 83 lcd_update();
@@ -110,7 +110,7 @@ void backtrace(int pcAddr, int spAddr, unsigned *line)
110{ 110{
111 UnwResult r; 111 UnwResult r;
112 112
113 lcd_putsf(0, (*line)++, "bt pc: 0x%08x, sp: 0x%08x", pcAddr, spAddr); 113 lcd_putsf(0, (*line)++, "bt pc: %08x, sp: %08x", pcAddr, spAddr);
114 lcd_update(); 114 lcd_update();
115 115
116 r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line); 116 r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line);