|
From: <sv...@va...> - 2007-09-21 05:12:37
|
Author: njn
Date: 2007-09-21 06:12:34 +0100 (Fri, 21 Sep 2007)
New Revision: 6887
Log:
fix compile error
Modified:
branches/MASSIF2/massif/ms_main.c
Modified: branches/MASSIF2/massif/ms_main.c
===================================================================
--- branches/MASSIF2/massif/ms_main.c 2007-09-21 05:05:45 UTC (rev 6886)
+++ branches/MASSIF2/massif/ms_main.c 2007-09-21 05:12:34 UTC (rev 6887)
@@ -1500,7 +1500,7 @@
// every XPt significant. We also always consider the alloc_xpt to be
// significant.
tl_assert(xpt->curr_szB <= curr_total_szB);
- return xpt == alloc_xpt || 0 == clo_threshold
+ return xpt == alloc_xpt || 0 == clo_threshold ||
(0 != curr_total_szB &&
xpt->curr_szB * 10000 / curr_total_szB >= clo_threshold);
}
|