From 75c3ba96d57369fd1e7671b2c19e2cc18c8ccfd2 Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Thu, 28 Dec 2023 18:30:10 +0100 Subject: [PATCH] Ran `cargo fmt` --- src/workers/walk_worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/workers/walk_worker.rs b/src/workers/walk_worker.rs index 3a99bfc..5f76695 100644 --- a/src/workers/walk_worker.rs +++ b/src/workers/walk_worker.rs @@ -35,7 +35,7 @@ impl WalkWorker { let mut subdirs: Vec = 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 '{}'",