Skip to content

Commit

Permalink
bin summary print total bytes in hex also
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmoon79 committed Feb 8, 2023
1 parent b6d359f commit e46b1f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/bin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2731,8 +2731,8 @@ fn print_summary_opt_processed(summary_opt: &SummaryOpt) {
return;
}
}
eprintln!("{}bytes {}", OPT_SUMMARY_PRINT_INDENT2, summary.BlockReader_bytes);
eprintln!("{}bytes total {}", OPT_SUMMARY_PRINT_INDENT2, summary.BlockReader_bytes_total);
eprintln!("{}bytes {1} (0x{1:X})", OPT_SUMMARY_PRINT_INDENT2, summary.BlockReader_bytes);
eprintln!("{}bytes total {1} (0x{1:X})", OPT_SUMMARY_PRINT_INDENT2, summary.BlockReader_bytes_total);
eprintln!(
"{}block size {1} (0x{1:X})",
OPT_SUMMARY_PRINT_INDENT2, summary.BlockReader_blocksz
Expand Down

0 comments on commit e46b1f9

Please sign in to comment.