add and apply unused_io_amount clippy lint

This commit is contained in:
auronandace
2026-06-17 13:40:16 +01:00
parent c906030759
commit 05a8954e0a
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ impl ProducerHandle {
}
pub fn write_event(&mut self, event: orbclient::Event) -> io::Result<()> {
self.0.write(&event)?;
self.0.write_all(&event)?;
Ok(())
}
}