From 8766e4412b95cfa0288683748cc20aba81a64d08 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 4 Jan 2025 02:20:55 +0100 Subject: Address pedantic issues --- src/file_finder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/file_finder.rs') diff --git a/src/file_finder.rs b/src/file_finder.rs index a9b84f8..0512146 100644 --- a/src/file_finder.rs +++ b/src/file_finder.rs @@ -17,7 +17,7 @@ fn find_files_recursively(root_path: &PathBuf, directory_path: &PathBuf) -> Vec< continue; } if path.is_dir() { - result.append(&mut find_files_recursively(root_path, &path)) + result.append(&mut find_files_recursively(root_path, &path)); } else { let file_type = file_handler.identify(&path); result.push(File { path, file_type }); -- cgit