aboutsummaryrefslogtreecommitdiff
path: root/src/file_finder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_finder.rs')
-rw-r--r--src/file_finder.rs2
1 files changed, 1 insertions, 1 deletions
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 });