Skip to content

Commit

Permalink
Fix clippy warning with make validate
Browse files Browse the repository at this point in the history
Signed-off-by: John Eckersberg <[email protected]>
  • Loading branch information
jeckersb committed Aug 14, 2024
1 parent 2aa8c6a commit 61c515b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 61c515b

Please sign in to comment.