summaryrefslogtreecommitdiff
path: root/src/fcntl.rs
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2023-05-21 08:52:42 -0600
committerAlan Somers <asomers@gmail.com>2023-05-21 08:52:42 -0600
commite42c3589a3c17e69043bc76c9a087acf6e5cb83e (patch)
tree389dc5b02b55b90b3af387c465f33ff1a16bf397 /src/fcntl.rs
parentae6699940e8fc75008f94312f189892efdcfb2f0 (diff)
downloadnix-e42c3589a3c17e69043bc76c9a087acf6e5cb83e.zip
Clippy cleanup:
fix the new clippy::non_minimal_cfg lint
Diffstat (limited to 'src/fcntl.rs')
-rw-r--r--src/fcntl.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fcntl.rs b/src/fcntl.rs
index a9ef9ad1..d799ff37 100644
--- a/src/fcntl.rs
+++ b/src/fcntl.rs
@@ -701,7 +701,7 @@ pub fn vmsplice(
}
}
-#[cfg(any(target_os = "linux"))]
+#[cfg(target_os = "linux")]
#[cfg(feature = "fs")]
libc_bitflags!(
/// Mode argument flags for fallocate determining operation performed on a given range.
@@ -741,7 +741,7 @@ feature! {
///
/// Allows the caller to directly manipulate the allocated disk space for the
/// file referred to by fd.
-#[cfg(any(target_os = "linux"))]
+#[cfg(target_os = "linux")]
#[cfg(feature = "fs")]
pub fn fallocate(
fd: RawFd,