Skip to content

Commit e037053

Browse files
committed
fix for bad cfg logic
1 parent f50a3be commit e037053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sys/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#[cfg(any(target_os = "dragonfly",
33
target_os = "freebsd",
44
target_os = "ios",
5-
not(all(target_os = "linux", target_env = "uclibc")),
5+
all(target_os = "linux", not(target_env = "uclibc")),
66
target_os = "macos",
77
target_os = "netbsd"))]
88
pub mod aio;

0 commit comments

Comments
 (0)