Fixed new Clippy Warnings

This commit is contained in:
Wyatt Herkamp 2022-09-27 13:30:55 -04:00
parent 24caeaac27
commit d59adf0990

View file

@ -1301,7 +1301,7 @@ fn path_to_string(path: &std::path::Path) -> String {
if !path_str.is_empty() {
path_str.push('/');
}
path_str.push_str(&*os_str.to_string_lossy());
path_str.push_str(&os_str.to_string_lossy());
}
}
path_str