From 7c6d313c84024d3145093b1235b67854c1fee9f1 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 4 Sep 2024 18:58:28 -0700 Subject: [PATCH] Fix compilation on solarish. --- src/termios/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/termios/types.rs b/src/termios/types.rs index 3b211b831..902002ea4 100644 --- a/src/termios/types.rs +++ b/src/termios/types.rs @@ -1193,6 +1193,7 @@ impl core::fmt::Debug for SpecialCodeIndex { Self::VKILL => write!(f, "VKILL"), #[cfg(not(solarish))] Self::VEOF => write!(f, "VEOF"), + #[cfg(not(solarish))] Self::VTIME => write!(f, "VTIME"), #[cfg(not(solarish))] Self::VMIN => write!(f, "VMIN"),