Remove unused return value variable in lib/unwarminder/backtrace.c

Stop the Android warning about it

Change-Id: I2f01220004f128befaa5757786b8de174566cbb5
This commit is contained in:
Michael Sevakis 2014-08-25 14:07:19 -04:00
parent 2cb274ca77
commit bfbec3a3a7

View file

@ -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();