summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fcntl.rs4
-rw-r--r--test/test_fcntl.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/fcntl.rs b/src/fcntl.rs
index 1581d3a7..d2242dac 100644
--- a/src/fcntl.rs
+++ b/src/fcntl.rs
@@ -20,7 +20,7 @@ use crate::sys::uio::IoVec; // For vmsplice
target_os = "fuchsia",
any(target_os = "wasi", target_env = "wasi"),
target_env = "uclibc",
- target_env = "freebsd"
+ target_os = "freebsd"
))]
pub use self::posix_fadvise::*;
@@ -587,7 +587,7 @@ pub fn fallocate(
target_os = "fuchsia",
any(target_os = "wasi", target_env = "wasi"),
target_env = "uclibc",
- target_env = "freebsd"
+ target_os = "freebsd"
))]
mod posix_fadvise {
use crate::errno::Errno;
diff --git a/test/test_fcntl.rs b/test/test_fcntl.rs
index 1e8b2678..5d1bafeb 100644
--- a/test/test_fcntl.rs
+++ b/test/test_fcntl.rs
@@ -332,7 +332,7 @@ mod linux_android {
target_os = "fuchsia",
any(target_os = "wasi", target_env = "wasi"),
target_env = "uclibc",
- target_env = "freebsd"))]
+ target_os = "freebsd"))]
mod test_posix_fadvise {
use tempfile::NamedTempFile;