aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs
index b414cf9..97fd8a0 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -6,6 +6,9 @@ pub enum Error {
#[error("error opening pts at {0}")]
OpenPts(std::path::PathBuf, #[source] std::io::Error),
+ #[error("error setting terminal size")]
+ SetTermSize(#[source] nix::Error),
+
#[error("error spawning subprocess")]
Spawn(#[source] std::io::Error),
}