From 546c4762f234a6746051a6c739563b6b4c9fdafd Mon Sep 17 00:00:00 2001 From: Adam Wick Date: Fri, 7 Apr 2023 10:30:44 -0700 Subject: [PATCH] Try to fix Windows build case. --- src/bin/ngri.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/ngri.rs b/src/bin/ngri.rs index 772016b..c78179f 100644 --- a/src/bin/ngri.rs +++ b/src/bin/ngri.rs @@ -141,6 +141,7 @@ fn main() -> Result<(), BackendError> { } Err(ReadlineError::Eof) => break, Err(ReadlineError::Interrupted) => break, + #[cfg(not(windows))] Err(ReadlineError::Errno(e)) => { eprintln!("Unknown syscall error: {}", e); break;