From 3f1533e0454cc05b0b9f3d091e5cc6f44a13e0a2 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 19 Jan 2025 18:04:25 -0500 Subject: [PATCH] Misc clippy lints --- rust/src/low_level_il/lifting.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/rust/src/low_level_il/lifting.rs b/rust/src/low_level_il/lifting.rs index 61e514c15..0e8994c60 100644 --- a/rust/src/low_level_il/lifting.rs +++ b/rust/src/low_level_il/lifting.rs @@ -1576,7 +1576,6 @@ where // Only need to update the label if there is an associated address. if let Some(loc) = label.location { - let loc: Location = loc.into(); let arch = loc.arch.unwrap_or_else(|| *self.arch().as_ref()); // Add the label into the label map unsafe { BNAddLowLevelILLabelForAddress(self.handle, arch.handle, loc.addr) };