clippy: cleanup

This commit is contained in:
Nova
2024-10-21 06:18:52 -04:00
parent fe22d3954a
commit 242eed37fe

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();
}
}