From 9872c6e778769746d3d015cb31b9fa9643d7f035 Mon Sep 17 00:00:00 2001 From: Padraic Fanning <27117322+fanninpm@users.noreply.github.com> Date: Sun, 3 May 2026 22:58:57 -0400 Subject: [PATCH] Fix clippy pedantic lint --- crates/host_env/src/select.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/host_env/src/select.rs b/crates/host_env/src/select.rs index 89988ee96af..3d484d56b45 100644 --- a/crates/host_env/src/select.rs +++ b/crates/host_env/src/select.rs @@ -6,6 +6,7 @@ pub mod platform { pub use libc::{FD_ISSET, FD_SET, FD_SETSIZE, FD_ZERO, fd_set, select, timeval}; pub use std::os::unix::io::RawFd; + #[must_use] pub const fn check_err(x: i32) -> bool { x < 0 }