Skip to content

Commit

Permalink
Fix clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
fluxxcode committed Nov 15, 2024
1 parent 6be1809 commit 2276521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/disks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl Disk {
canonicalize_paths: bool,
) -> Self {
Self {
mount_point: Self::canonicalize(&mount_point, canonicalize_paths),
mount_point: Self::canonicalize(mount_point, canonicalize_paths),
display_name: gen_display_name(
name.unwrap_or_default(),
mount_point.to_str().unwrap_or_default(),
Expand Down

0 comments on commit 2276521

Please sign in to comment.