Skip to content

Commit 9734b01

Browse files
committed
Fix error in the timeout value error message
1 parent 4f36334 commit 9734b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)