summaryrefslogtreecommitdiffstats
path: root/grapher
diff options
context:
space:
mode:
Diffstat (limited to 'grapher')
-rw-r--r--grapher/Graph.cxx4
-rw-r--r--grapher/StapParser.cxx1
2 files changed, 3 insertions, 2 deletions
diff --git a/grapher/Graph.cxx b/grapher/Graph.cxx
index 1fa598c2..d36f284f 100644
--- a/grapher/Graph.cxx
+++ b/grapher/Graph.cxx
@@ -23,9 +23,9 @@ namespace systemtap
if (_autoScaling)
{
// line separation
- int linesPossible = _graphWidth / (_lineWidth + 2);
+ int linesPossible = (int)(_graphWidth / (_lineWidth + 2.0));
// Find latest time.
- double latestTime = 0;
+ double latestTime = 0.0;
for (DatasetList::iterator ditr = _datasets.begin(),
de = _datasets.end();
ditr != de;
diff --git a/grapher/StapParser.cxx b/grapher/StapParser.cxx
index 1c865614..693be919 100644
--- a/grapher/StapParser.cxx
+++ b/grapher/StapParser.cxx
@@ -2,6 +2,7 @@
#include <gtkmm/window.h>
#include <iostream>
+#include <sstream>
namespace systemtap
{