Skip to content

Commit

Permalink
Merge pull request containers#761 from jeckersb/clippy
Browse files Browse the repository at this point in the history
Fix clippy warning with `make validate`
  • Loading branch information
cgwalters authored Aug 15, 2024
2 parents 54591e6 + 61c515b commit 4fed0e4
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 4fed0e4

Please sign in to comment.