clippy fixups

This commit is contained in:
Rob Walker 2018-08-05 13:20:53 -07:00
parent 6800ff1882
commit 4c4b0f551e
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ fn main() {
for entry in entries {
let entry = entry.unwrap();
serde_json::to_writer(stdout(), &entry).expect("serialize");
stdout().write(b"\n").expect("newline");
stdout().write_all(b"\n").expect("newline");
}
}