From 5f4391cb82387b606ca64e7867f05da7d4d9fc43 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 21 Feb 2026 18:38:07 -0500 Subject: [PATCH] Fix libclide lints. --- libclide/src/fs/entry_meta.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libclide/src/fs/entry_meta.rs b/libclide/src/fs/entry_meta.rs index d7483b9..8785710 100644 --- a/libclide/src/fs/entry_meta.rs +++ b/libclide/src/fs/entry_meta.rs @@ -35,7 +35,7 @@ impl EntryMeta { pub fn new>(p: P) -> Result { let path = p.as_ref(); let is_dir = path.is_dir(); - let abs_path = Self::normalize(&path).to_string_lossy().to_string(); + let abs_path = Self::normalize(path).to_string_lossy().to_string(); let file_name = Path::new(&abs_path) .file_name() .context(format!("Failed to get file name for path: {abs_path:?}"))?