Skip to content

Commit e117b19

Browse files
committed
fix clippy
Signed-off-by: Bugen Zhao <[email protected]>
1 parent 4723eef commit e117b19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqllogictest-bin/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ impl Output for Stdout {
682682
impl Output for Vec<u8> {
683683
fn finish(&mut self) {
684684
let mut stdout = stdout();
685-
stdout.write_all(&self).unwrap();
685+
stdout.write_all(self).unwrap();
686686
stdout.flush().unwrap();
687687
}
688688
}

0 commit comments

Comments
 (0)