From a1d66393e62ad5259d892ffbc75a400910251349 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 24 Apr 2019 07:43:43 +1000 Subject: [PATCH] emory-compare: explicitly state byte counts for total and matched --- emory-compare.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emory-compare.cpp b/emory-compare.cpp index b28dc86..8d0c689 100644 --- a/emory-compare.cpp +++ b/emory-compare.cpp @@ -179,5 +179,5 @@ int main (int argc, char const **argv) [] (auto const &a, auto const &b) { return a + b.offset.second - b.offset.first; } ); - std::cout << "Found " << found.size () << " chunks of " << matching << " bytes for a factor of " << float (matching) / total << "\n"; + std::cout << "Found " << found.size () << " chunks. " << matching << "/" << total << " bytes for a factor of " << float (matching) / total << "\n"; }