Skip to content

Commit

Permalink
fix(vfs) Fix 4f59083.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Aug 30, 2021
1 parent 18a642d commit d0a95ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vfs/src/mem_fs/file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,8 @@ impl Write for FileHandle {
Ok(())
}

#[allow(clippy::unused_io_amount)]
fn write_all(&mut self, buf: &[u8]) -> io::Result<()> {
#[deny(clippy::unused_io_amount)]
self.write(buf)?;

Ok(())
Expand Down

0 comments on commit d0a95ac

Please sign in to comment.