mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Fix wrong printf format in system-hosted.c
Change-Id: I73722f0711a295152a98ab784cd6cf76379ef52e
This commit is contained in:
parent
b8b195a296
commit
1a9a5fc279
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ static void sig_handler(int sig, siginfo_t *siginfo, void *context)
|
|||
lcd_putsf(0, line++, "%s at %08x", strsignal(sig), pc);
|
||||
|
||||
if(sig == SIGILL || sig == SIGFPE || sig == SIGSEGV || sig == SIGBUS || sig == SIGTRAP)
|
||||
lcd_putsf(0, line++, "address 0x%08x", siginfo->si_addr);
|
||||
lcd_putsf(0, line++, "address %p", siginfo->si_addr);
|
||||
|
||||
if(!triggered)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue