From 61c515b8f5438bada057365a2241c43a27db157a Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Wed, 14 Aug 2024 13:31:16 -0400 Subject: [PATCH] Fix clippy warning with `make validate` Signed-off-by: John Eckersberg --- lib/src/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/status.rs b/lib/src/status.rs index d9f5d2d62..34377e8e4 100644 --- a/lib/src/status.rs +++ b/lib/src/status.rs @@ -136,7 +136,7 @@ fn boot_entry_from_deployment( let store = deployment.store()?; let store = store.as_ref().unwrap_or(&sysroot.store); let spec = Some(store.spec()); - let status = store.imagestatus(&*sysroot, deployment, image)?; + let status = store.imagestatus(sysroot, deployment, image)?; (spec, status) } else {