diff options
Diffstat (limited to 'src/stats.cc')
-rw-r--r-- | src/stats.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stats.cc b/src/stats.cc index 172971aa..524f5a87 100644 --- a/src/stats.cc +++ b/src/stats.cc @@ -88,8 +88,9 @@ 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; + out << (double(statistics.posts_count)/ + double((statistics.latest_post - statistics.earliest_post).days())) + << _(" per day)") << std::endl; out << _(" Uncleared postings: "); out.width(6); |