Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit cd67e47

Browse files
committed
Fix error in the timeout value error message
1 parent 36235b9 commit cd67e47

File tree

1 file changed

+1
-1
lines changed
  • src/tools/miri/src/shims/unix/linux

1 file changed

+1
-1
lines changed

src/tools/miri/src/shims/unix/linux/epoll.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
487487
-1 => None,
488488
..-1 => {
489489
throw_unsup_format!(
490-
"epoll_wait: Only timeout values greater than -1 are supported."
490+
"epoll_wait: Only timeout values greater than or equal to -1 are supported."
491491
);
492492
}
493493
};

0 commit comments

Comments
 (0)