Skip to content

Commit 61c515b

Browse files
committed
Fix clippy warning with make validate
Signed-off-by: John Eckersberg <[email protected]>
1 parent 2aa8c6a commit 61c515b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/status.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ fn boot_entry_from_deployment(
136136
let store = deployment.store()?;
137137
let store = store.as_ref().unwrap_or(&sysroot.store);
138138
let spec = Some(store.spec());
139-
let status = store.imagestatus(&*sysroot, deployment, image)?;
139+
let status = store.imagestatus(sysroot, deployment, image)?;
140140

141141
(spec, status)
142142
} else {

0 commit comments

Comments
 (0)