summaryrefslogtreecommitdiffstats
path: root/src/parse.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.rs')
-rw-r--r--src/parse.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.rs b/src/parse.rs
index b39da14f..a62d486c 100644
--- a/src/parse.rs
+++ b/src/parse.rs
@@ -102,7 +102,7 @@ fn _parse_file_path(s: &str, git_diff_name: bool) -> String {
match s.strip_suffix('\t').unwrap_or(s) {
path if path == "/dev/null" => "/dev/null",
path if git_diff_name && DIFF_PREFIXES.iter().any(|s| path.starts_with(s)) => &path[2..],
- path if git_diff_name => &path,
+ path if git_diff_name => path,
path => path.split('\t').next().unwrap_or(""),
}
.to_string()
@@ -142,7 +142,7 @@ pub fn get_file_extension_from_file_meta_line_file_path(path: &str) -> Option<&s
if path.is_empty() || path == "/dev/null" {
None
} else {
- get_extension(&path).map(|ex| ex.trim())
+ get_extension(path).map(|ex| ex.trim())
}
}