From 77b22789dd22afd9f002feaeabc80a3b2b63ca09 Mon Sep 17 00:00:00 2001 From: Nova Date: Mon, 21 Oct 2024 06:18:52 -0400 Subject: [PATCH] clippy: cleanup --- src/wayland/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland/mod.rs b/src/wayland/mod.rs index 356e797..af66172 100644 --- a/src/wayland/mod.rs +++ b/src/wayland/mod.rs @@ -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(); } }