summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph_gui.cpp')
-rw-r--r--src/graph_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp
index cfed85561..1e273a251 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -139,7 +139,7 @@ static void DrawGraph(const GraphDrawer *gw)
/* For now, if the graph has negative values the scaling is
* symmetrical about the x axis, so take the absolute value
* of each data point. */
- highest_value = max(highest_value, myabs(datapoint));
+ highest_value = max(highest_value, abs(datapoint));
}
}
}