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
This commit is contained in:
@ -67,7 +67,7 @@ fig = plt.figure()
|
||||
|
||||
xmin = 99999999
|
||||
xmax = 0
|
||||
ymin = 99999999
|
||||
ymin = 0xffffffff
|
||||
ymax = 0
|
||||
|
||||
line_counter = 1
|
||||
|
||||
Reference in New Issue
Block a user