summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/sdl/thread-sdl.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/sdl/thread-sdl.c')
-rw-r--r--firmware/target/hosted/sdl/thread-sdl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/hosted/sdl/thread-sdl.c b/firmware/target/hosted/sdl/thread-sdl.c
index 1a683911d7..83f1d1960d 100644
--- a/firmware/target/hosted/sdl/thread-sdl.c
+++ b/firmware/target/hosted/sdl/thread-sdl.c
@@ -632,8 +632,8 @@ void thread_exit(void)
632 remove_thread(THREAD_ID_CURRENT); 632 remove_thread(THREAD_ID_CURRENT);
633 /* This should never and must never be reached - if it is, the 633 /* This should never and must never be reached - if it is, the
634 * state is corrupted */ 634 * state is corrupted */
635 THREAD_PANICF("thread_exit->K:*R", 635 THREAD_PANICF("thread_exit->K:*R (ID: %d)",
636 thread_id_entry(THREAD_ID_CURRENT)); 636 thread_id_entry(THREAD_ID_CURRENT)->id);
637 while (1); 637 while (1);
638} 638}
639 639