diff mbox series

[3/4] pybootchartgui: fix overlapping argument in render_processes_chart

Message ID 20230710222420.2235277-3-jose.quaresma@foundries.io
State Accepted, archived
Commit 81389ccdf22d3ea845ae8d894a0e4e0cdf589f2a
Headers show
Series [1/4] pybootchartgui: calcule elapsed_time when starting the loop | expand

Commit Message

Jose Quaresma July 10, 2023, 10:24 p.m. UTC
There is another variable named 'w' on the function which is redefined.
The full width is needed in the function so rename it as this must be unique.

Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
---
 scripts/pybootchartgui/pybootchartgui/draw.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 10f6783d38..e2f9c5dc6c 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -620,8 +620,8 @@  def render_charts(ctx, options, clip, trace, curr_y, w, h, sec_w):
 
     return curr_y
 
-def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w):
-    chart_rect = [off_x, curr_y+header_h, w, h - curr_y - 1 * off_y - header_h  ]
+def render_processes_chart(ctx, options, trace, curr_y, width, h, sec_w):
+    chart_rect = [off_x, curr_y+header_h, width, h - curr_y - 1 * off_y - header_h  ]
 
     draw_legend_box (ctx, "Configure", \
              TASK_COLOR_CONFIGURE, off_x  , curr_y + 45, leg_s)