clippy: cleanup

This commit is contained in:
Nova
2024-10-21 06:18:52 -04:00
parent a4ec7c7c6b
commit 77b22789dd

View File

@@ -87,7 +87,7 @@ impl UnownedFd {
}
impl Drop for UnownedFd {
fn drop(&mut self) {
self.0.take().unwrap().into_inner().into_raw_fd();
let _ = self.0.take().unwrap().into_inner().into_raw_fd();
}
}