Index: runtime/bin/vmstats/bargraph.dart |
=================================================================== |
--- runtime/bin/vmstats/bargraph.dart (revision 21220) |
+++ runtime/bin/vmstats/bargraph.dart (working copy) |
@@ -188,7 +188,7 @@ |
* Returns the maximum total from all the samples. |
*/ |
int get maxTotal { |
- var max = 0; |
+ var max = 1; // Must be non-zero. |
_samples.forEach((Sample s) => max = (s.total() > max ? s.total() : max)); |
return max; |
} |