We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef62902 commit d615233Copy full SHA for d615233
nea/src/lib.rs
@@ -78,7 +78,7 @@ pub unsafe extern "C" fn roc_panic(message_ptr: *const i8, panic_tag: u32) -> !
78
let message_cstr = unsafe { std::ffi::CStr::from_ptr(message_ptr) };
79
let message = message_cstr.to_str().unwrap();
80
81
- eprintln!("thread {thread_id:?} hit a panic {panic_tag}: {message}");
+ eprintln!("thread {thread_id:?} called roc_panic {panic_tag}: {message}");
82
83
let jmp_buf = JMP_BUFFER.with_borrow(|jmp_buf| *jmp_buf);
84
unsafe { longjmp(&jmp_buf, 1) }
0 commit comments