From 4c0c72cfb9b96b7c80fed5e1e5b06872fa4ee45f Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Sun, 5 Apr 2026 01:34:38 +0900 Subject: [PATCH] wc: drop #[allow(clippy::question_mark)] --- src/uu/wc/src/count_fast.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/uu/wc/src/count_fast.rs b/src/uu/wc/src/count_fast.rs index ea334a8e7..637a777e4 100644 --- a/src/uu/wc/src/count_fast.rs +++ b/src/uu/wc/src/count_fast.rs @@ -52,7 +52,6 @@ fn count_bytes_using_splice(fd: &impl AsFd) -> Result { Ok(res) => { byte_count += res; // Silent the warning as we want to the error message - #[allow(clippy::question_mark)] if splice_exact(&pipe_rd, &null_file, res).is_err() { return Err(byte_count); }