summaryrefslogtreecommitdiffstats
path: root/src/aggregate.rs
diff options
context:
space:
mode:
authorPiotr Wach <pwach@bloomberg.net>2024-01-07 20:39:10 +0000
committerPiotr Wach <pwach@bloomberg.net>2024-01-07 20:39:10 +0000
commit8aaa05ada6169860cd083a24764bc2c5915b220b (patch)
treec343163e3d849b30be0f04c159f6d2280216b054 /src/aggregate.rs
parent5abb9d7e8d18799caa4a2f3823e06b77bdb27133 (diff)
clippy
Diffstat (limited to 'src/aggregate.rs')
-rw-r--r--src/aggregate.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/aggregate.rs b/src/aggregate.rs
index 163a7eb..ec4d5ae 100644
--- a/src/aggregate.rs
+++ b/src/aggregate.rs
@@ -90,7 +90,6 @@ pub fn aggregate(
} else {
output_colored_path(
&mut out,
- &walk_options,
&path,
num_bytes,
num_errors,
@@ -111,7 +110,6 @@ pub fn aggregate(
for (path, num_bytes, num_errors) in aggregates.into_iter() {
output_colored_path(
&mut out,
- &walk_options,
&path,
num_bytes,
num_errors,
@@ -124,7 +122,6 @@ pub fn aggregate(
if num_roots > 1 && compute_total {
output_colored_path(
&mut out,
- &walk_options,
Path::new("total"),
total,
res.num_errors,
@@ -141,7 +138,6 @@ fn path_color_of(path: impl AsRef<Path>) -> Option<Color> {
fn output_colored_path(
out: &mut impl io::Write,
- options: &WalkOptions,
path: impl AsRef<Path>,
num_bytes: u128,
num_errors: u64,