From 5b5e9982864d685676d465d3d74ca41cb30fcdd8 Mon Sep 17 00:00:00 2001 From: The Dax Date: Mon, 23 Jun 2025 14:24:27 -0400 Subject: [PATCH] Address warning: "deref which would be done by auto-deref" --- src/bin/kawari-patch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/kawari-patch.rs b/src/bin/kawari-patch.rs index ee6f021..0462660 100644 --- a/src/bin/kawari-patch.rs +++ b/src/bin/kawari-patch.rs @@ -167,7 +167,7 @@ async fn verify_boot( // check if we need any patching let mut send_patches = Vec::new(); - let patches = list_patch_files(&*format!("{}/boot", &config.patch.patches_location)); + let patches = list_patch_files(&format!("{}/boot", &config.patch.patches_location)); for patch in patches { let patch_str: &str = &patch; if actual_boot_version.partial_cmp(patch_str).unwrap() == Ordering::Less {