From 1de748fc133b005f44ca0a3fe496aede3ae4c35d Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sat, 7 Feb 2009 18:41:52 -0400 Subject: Removed an unnecessary boolean test. --- src/filters.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/filters.cc b/src/filters.cc index 45c3fdaa..a0d65478 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -309,7 +309,7 @@ void collapse_xacts::operator()(xact_t& xact) // If we've reached a new entry, report on the subtotal // accumulated thus far. - if (last_entry && last_entry != xact.entry && count > 0) + if (last_entry != xact.entry && count > 0) report_subtotal(); xact.add_to_value(subtotal); -- cgit v1.2.3