summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/system-hosted.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/system-hosted.c')
-rw-r--r--firmware/target/hosted/system-hosted.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/system-hosted.c b/firmware/target/hosted/system-hosted.c
index a8b7dc82d3..ce47fd5f5c 100644
--- a/firmware/target/hosted/system-hosted.c
+++ b/firmware/target/hosted/system-hosted.c
@@ -67,7 +67,7 @@ static void sig_handler(int sig, siginfo_t *siginfo, void *context)
67 lcd_putsf(0, line++, "%s at %08x", strsignal(sig), pc); 67 lcd_putsf(0, line++, "%s at %08x", strsignal(sig), pc);
68 68
69 if(sig == SIGILL || sig == SIGFPE || sig == SIGSEGV || sig == SIGBUS || sig == SIGTRAP) 69 if(sig == SIGILL || sig == SIGFPE || sig == SIGSEGV || sig == SIGBUS || sig == SIGTRAP)
70 lcd_putsf(0, line++, "address 0x%08x", siginfo->si_addr); 70 lcd_putsf(0, line++, "address %p", siginfo->si_addr);
71 71
72 if(!triggered) 72 if(!triggered)
73 { 73 {