aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/readline.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/readline.rs b/src/readline.rs
index 6d1a69a..d385bd1 100644
--- a/src/readline.rs
+++ b/src/readline.rs
@@ -126,7 +126,7 @@ impl ReadlineState {
'd' => {
if self.buffer.is_empty() {
self.echo_char('\n').context(WriteToTerminal)?;
- snafu::ensure!(false, EOF);
+ return EOF.fail();
}
}
'e' => {
@@ -256,7 +256,7 @@ impl futures::future::Future for Readline {
}
Err(std::sync::mpsc::TryRecvError::Disconnected) => {
// is EOF correct here?
- snafu::ensure!(false, EOF)
+ return EOF.fail();
}
}
}