Skip to content

Commit

Permalink
remove assert msg
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdsk committed Oct 26, 2024
1 parent 801807e commit 0a45de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/unix/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ impl Thread {
if ret == KERN_SUCCESS {
break;
}
assert_eq!(ret, KERN_ABORTED, "mach_wait_until returned error, code: {}", ret);
assert_eq!(ret, KERN_ABORTED);
}
}
}
Expand Down

0 comments on commit 0a45de6

Please sign in to comment.