diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2012-05-28 00:51:47 +0200 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2012-05-28 00:51:47 +0200 |
| commit | 08f5224b1bf1293ab1d59fdfbf9045561733c38d (patch) | |
| tree | d60a970c4c1c6a4eeeee76dfb7dd7af1e25d8233 /lib | |
| parent | 112b80b0c2f0ea27f16c23699867554f66c31938 (diff) | |
| download | rockbox-08f5224b1bf1293ab1d59fdfbf9045561733c38d.zip rockbox-08f5224b1bf1293ab1d59fdfbf9045561733c38d.tar.gz rockbox-08f5224b1bf1293ab1d59fdfbf9045561733c38d.tar.bz2 rockbox-08f5224b1bf1293ab1d59fdfbf9045561733c38d.tar.xz | |
Use shorter lines to show an ARM backtrace (so address fit on the clip zip screen)
Change-Id: Ib36c09a44230fbaaa119f756367f98bdc7756983
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/unwarminder/backtrace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/unwarminder/backtrace.c b/lib/unwarminder/backtrace.c index 294b7f6..47898a9 100644 --- a/lib/unwarminder/backtrace.c +++ b/lib/unwarminder/backtrace.c @@ -77,7 +77,7 @@ static Boolean CliReport(void *data, Int32 address) unsigned *line = (unsigned *)data; - lcd_putsf(0, (*line)++, " %c: 0x%08x", + lcd_putsf(0, (*line)++, " %c: %08x", (address & 0x1) ? 'T' : 'A', address & (~0x1)); lcd_update(); @@ -110,7 +110,7 @@ void backtrace(int pcAddr, int spAddr, unsigned *line) { UnwResult r; - lcd_putsf(0, (*line)++, "bt pc: 0x%08x, sp: 0x%08x", pcAddr, spAddr); + lcd_putsf(0, (*line)++, "bt pc: %08x, sp: %08x", pcAddr, spAddr); lcd_update(); r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line); |