summaryrefslogtreecommitdiffstats
path: root/src/aggregate.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-06-03 09:21:22 +0530
committerSebastian Thiel <sthiel@thoughtworks.com>2019-06-03 09:21:22 +0530
commit7eb857467c6d2603129edbaea636ef0d118fa064 (patch)
tree8fad44d65c091fadd2903a2d3c6f4ba8a9bd6bd2 /src/aggregate.rs
parentb919c501a249dcf626e390d496faf6d31a9e71ac (diff)
bytes formatting for interactive + footer
Diffstat (limited to 'src/aggregate.rs')
-rw-r--r--src/aggregate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aggregate.rs b/src/aggregate.rs
index e6f52f6..6b616e8 100644
--- a/src/aggregate.rs
+++ b/src/aggregate.rs
@@ -113,7 +113,7 @@ fn write_path<C: fmt::Display>(
writeln!(
out,
"{byte_color}{:>10}{byte_color_reset}\t{path_color}{}{path_color_reset}{}",
- options.format_bytes(num_bytes),
+ options.byte_format.display(num_bytes),
path.as_ref().display(),
if num_errors == 0 {
Cow::Borrowed("")