Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
luser committed Jan 2, 2021
1 parent c714d95 commit 3e16eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ where
fn execute(&mut self, byte: u8) {
// We only care about executing linefeeds.
if byte == b'\n' {
self.err = writeln!(self.writer, "").err();
self.err = writeln!(self.writer).err();
}
}
// Since we're not actually implementing a terminal, we just ignore everything else.
Expand Down

0 comments on commit 3e16eab

Please sign in to comment.