From fc62402c60cd3faac37f3cd60ee417d119869929 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 28 Feb 2012 00:08:39 -0600 Subject: Fixed nasty problem related to interval reporting --- src/filters.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/filters.h') diff --git a/src/filters.h b/src/filters.h index e7a2eefa..d207d842 100644 --- a/src/filters.h +++ b/src/filters.h @@ -732,8 +732,8 @@ public: virtual void flush() { if (last_post && interval.duration) { - if (interval.is_valid()) - report_subtotal(interval); + if (last_interval && interval != last_interval) + report_subtotal(last_interval); subtotal_posts::flush(); } } -- cgit v1.2.3