Skip to content

Commit 36a886a

Browse files
committed
rtprintpanic: clarify that the error is aborting the process
1 parent 35b0ea7 commit 36a886a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/rt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ macro_rules! rtprintpanic {
4646
macro_rules! rtabort {
4747
($($t:tt)*) => {
4848
{
49-
rtprintpanic!("fatal runtime error: {}\n", format_args!($($t)*));
49+
rtprintpanic!("fatal runtime error: {}, aborting\n", format_args!($($t)*));
5050
crate::sys::abort_internal();
5151
}
5252
}

0 commit comments

Comments
 (0)