diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-11 16:03:50 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-11 17:02:25 -0400 |
commit | dea2aed0b509734ec4e1cd163ac2a4f013000da2 (patch) | |
tree | 7908da76c67ae5172882306a319bf26df81b73b4 /src/stats.cc | |
parent | d580079df892c30d023b3211d6c4611c17b11f8f (diff) | |
download | fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.gz fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.bz2 fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.zip |
Untabified all source files
Diffstat (limited to 'src/stats.cc')
-rw-r--r-- | src/stats.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/stats.cc b/src/stats.cc index 86a8338d..172971aa 100644 --- a/src/stats.cc +++ b/src/stats.cc @@ -58,11 +58,11 @@ value_t report_statistics(call_scope_t& args) { straccstream accum; out << ACCUM(accum << _("Time period: %1 to %2 (%3 days)") - << format_date(statistics.earliest_post) - << format_date(statistics.latest_post) - << (statistics.latest_post - - statistics.earliest_post).days()) - << std::endl << std::endl; + << format_date(statistics.earliest_post) + << format_date(statistics.latest_post) + << (statistics.latest_post - + statistics.earliest_post).days()) + << std::endl << std::endl; } out << _(" Files these postings came from:") << std::endl; @@ -89,12 +89,12 @@ value_t report_statistics(call_scope_t& args) out << " ("; out.precision(2); out << (double((statistics.latest_post - statistics.earliest_post).days()) / - double(statistics.posts_count)) << _(" per day)") << std::endl; + double(statistics.posts_count)) << _(" per day)") << std::endl; out << _(" Uncleared postings: "); out.width(6); out << (statistics.posts_count - - statistics.posts_cleared_count) << std::endl; + statistics.posts_cleared_count) << std::endl; out << std::endl; |