diff options
-rw-r--r-- | lib/unwarminder/backtrace.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/unwarminder/backtrace.c b/lib/unwarminder/backtrace.c index 5612cfd74b..683d2fdcc1 100644 --- a/lib/unwarminder/backtrace.c +++ b/lib/unwarminder/backtrace.c | |||
@@ -108,12 +108,10 @@ Boolean CliInvalidateW(const Int32 a) | |||
108 | 108 | ||
109 | void backtrace(int pcAddr, int spAddr, unsigned *line) | 109 | void backtrace(int pcAddr, int spAddr, unsigned *line) |
110 | { | 110 | { |
111 | UnwResult r; | ||
112 | |||
113 | lcd_putsf(0, (*line)++, "pc:%08x sp:%08x", pcAddr, spAddr); | 111 | lcd_putsf(0, (*line)++, "pc:%08x sp:%08x", pcAddr, spAddr); |
114 | lcd_update(); | 112 | lcd_update(); |
115 | 113 | ||
116 | r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line); | 114 | UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line); |
117 | 115 | ||
118 | lcd_puts(0, (*line)++, "bt end"); | 116 | lcd_puts(0, (*line)++, "bt end"); |
119 | lcd_update(); | 117 | lcd_update(); |