Fix stdout typo (#565)

This commit is contained in:
nixxquality 2021-05-06 10:14:53 +02:00 committed by GitHub
parent 576990cb82
commit 176d8beb06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,6 +91,6 @@ pub fn buffer_size() -> Result<(u16, u16)> {
}
fn main() -> Result<()> {
let mut stderr = io::stdout();
run(&mut stderr)
let mut stdout = io::stdout();
run(&mut stdout)
}