Skip to content
Snippets Groups Projects
Commit a29929ee authored by Josh Mcguigan's avatar Josh Mcguigan
Browse files

Corrected all remaining build warnings

parent b9881e12
No related branches found
No related tags found
No related merge requests found
use std::io::{self, Read}; use std::io::{self, Read};
use std::sync::mpsc; use std::sync::mpsc;
use std::thread; use std::thread;
use std::io::BufReader;
use std::io::BufRead;
use sys::tty::get_tty; use sys::tty::get_tty;
...@@ -22,7 +20,7 @@ pub fn async_stdin_until(delimiter: u8) -> AsyncReader { ...@@ -22,7 +20,7 @@ pub fn async_stdin_until(delimiter: u8) -> AsyncReader {
if end_of_stream || send_error { return; } if end_of_stream || send_error { return; }
}, },
Err(e) => { return; } Err(_) => { return; }
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment