(flow monitor) Bug 1471 - Default constructor was not doing what it suppose to do
authorAlex Afanasyev <alexander.afanasyev@ucla.edu>
Thu, 12 Jul 2012 16:31:42 +0100
changeset 8895 a9fe1f5394de
parent 8894 90d67c5e8255
child 8896 da8f6d02dbe3
(flow monitor) Bug 1471 - Default constructor was not doing what it suppose to do
src/flow-monitor/model/histogram.cc
--- a/src/flow-monitor/model/histogram.cc	Thu Jul 12 12:35:31 2012 +0100
+++ b/src/flow-monitor/model/histogram.cc	Thu Jul 12 16:31:42 2012 +0100
@@ -97,7 +97,7 @@
 
 Histogram::Histogram ()
 {
-  Histogram (DEFAULT_BIN_WIDTH);
+  m_binWidth = DEFAULT_BIN_WIDTH;
 }