Fix error in the timeout value error message

This commit is contained in:
tiif 2024-08-24 23:36:18 +08:00
parent 36235b9e0d
commit cd67e47872

View file

@ -487,7 +487,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
-1 => None,
..-1 => {
throw_unsup_format!(
"epoll_wait: Only timeout values greater than -1 are supported."
"epoll_wait: Only timeout values greater than or equal to -1 are supported."
);
}
};