Skip to content

Commit

Permalink
ksud: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Feb 21, 2023
1 parent e309a03 commit c3ba483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userspace/ksud/src/mount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ impl StockMount {
fn get_target_mounts(&self) -> Vec<&proc_mounts::MountInfo> {
let mounts = self
.mountlist
.destination_starts_with(&std::path::Path::new(&self.mnt))
.destination_starts_with(std::path::Path::new(&self.mnt))
.filter(|m| m.fstype != "overlay");
mounts.collect()
}
Expand Down

0 comments on commit c3ba483

Please sign in to comment.