summaryrefslogtreecommitdiff
path: root/src/sys/termios.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/termios.rs')
-rw-r--r--src/sys/termios.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/termios.rs b/src/sys/termios.rs
index 80c73c9c..31e7291b 100644
--- a/src/sys/termios.rs
+++ b/src/sys/termios.rs
@@ -583,9 +583,9 @@ libc_enum! {
}
}
-#[cfg(not(all(target_os = "linux", target_arch = "sparc64")))]
+#[cfg(all(target_os = "linux", target_arch = "sparc64"))]
pub const VMIN: SpecialCharacterIndices = SpecialCharacterIndices::VEOF;
-#[cfg(not(all(target_os = "linux", target_arch = "sparc64")))]
+#[cfg(all(target_os = "linux", target_arch = "sparc64"))]
pub const VTIME: SpecialCharacterIndices = SpecialCharacterIndices::VEOL;
pub use libc::NCCS;