From da3a78ec4d26b69f968edcb4eedf61ed0d5fc1f0 Mon Sep 17 00:00:00 2001 From: Horst Schirmeier Date: Thu, 1 Sep 2016 16:56:34 +0200 Subject: [PATCH] faultspaceplot: fix ymin calculation The initialization value for ymin, which tracks the lower bound of plotted rectangles (and is finally used for the preselected zoom area), was chosen too small for Linux-kernel data structure addresses. Change-Id: I7cd8dc690843394107e8aae7fffa90f27ca18153 --- tools/analysis/faultspaceplot/fsp.plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/analysis/faultspaceplot/fsp.plot.py b/tools/analysis/faultspaceplot/fsp.plot.py index 25d9f8a3..bffe4bb0 100755 --- a/tools/analysis/faultspaceplot/fsp.plot.py +++ b/tools/analysis/faultspaceplot/fsp.plot.py @@ -67,7 +67,7 @@ fig = plt.figure() xmin = 99999999 xmax = 0 -ymin = 99999999 +ymin = 0xffffffff ymax = 0 line_counter = 1