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