diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-04 02:20:55 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-04 02:20:55 +0100 |
| commit | 8766e4412b95cfa0288683748cc20aba81a64d08 (patch) | |
| tree | b068bbd32915b2c0ca846465edfd6cb9bf718d6c /src/file_finder.rs | |
| parent | b03284133baa6339fe4adf48e4a6499ef3ac287b (diff) | |
Address pedantic issues
Diffstat (limited to 'src/file_finder.rs')
| -rw-r--r-- | src/file_finder.rs | 2 |
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 }); |