mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Remove unused return value variable in lib/unwarminder/backtrace.c
Stop the Android warning about it Change-Id: I2f01220004f128befaa5757786b8de174566cbb5
This commit is contained in:
parent
2cb274ca77
commit
bfbec3a3a7
1 changed files with 1 additions and 3 deletions
|
@ -108,12 +108,10 @@ Boolean CliInvalidateW(const Int32 a)
|
|||
|
||||
void backtrace(int pcAddr, int spAddr, unsigned *line)
|
||||
{
|
||||
UnwResult r;
|
||||
|
||||
lcd_putsf(0, (*line)++, "pc:%08x sp:%08x", pcAddr, spAddr);
|
||||
lcd_update();
|
||||
|
||||
r = UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line);
|
||||
UnwindStart(pcAddr, spAddr, &cliCallbacks, (void *)line);
|
||||
|
||||
lcd_puts(0, (*line)++, "bt end");
|
||||
lcd_update();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue