Skip to content

Commit

Permalink
Ran cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dmerejkowsky committed Dec 28, 2023
1 parent 7ab9080 commit 75c3ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workers/walk_worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl WalkWorker {
let mut subdirs: Vec<PathBuf> = vec![self.source.to_path_buf()];
while let Some(subdir) = subdirs.pop() {
// We just checked that subdirs is *not* empty, so calling pop() is safe

let entries = fs::read_dir(&subdir).with_context(|| {
format!(
"While walking source, could not read directory '{}'",
Expand Down

0 comments on commit 75c3ba9

Please sign in to comment.