diff options
author | Tom Tromey <tom@tromey.com> | 2019-07-22 08:34:25 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-07-22 08:34:25 -0600 |
commit | bfa2a36d94d124eb7b54fd271a543047579b47ee (patch) | |
tree | 471ac74a26c597bc5e68046a4e2376499076c49f /gdb/tui | |
parent | 0c628bba5afd16e0ab3d78ca81ab3f2d5342c50c (diff) | |
download | gdb-bfa2a36d94d124eb7b54fd271a543047579b47ee.zip gdb-bfa2a36d94d124eb7b54fd271a543047579b47ee.tar.gz gdb-bfa2a36d94d124eb7b54fd271a543047579b47ee.tar.bz2 |
Remove self-assign from make_invisible_and_set_new_height
In https://sourceware.org/ml/gdb-patches/2019-07/msg00509.html, Jan
pointed out that clang points out that
make_invisible_and_set_new_height self-assigns "height".
This patch fixes the bug by renaming the formal parameter.
gdb/ChangeLog
2019-07-22 Tom Tromey <tom@tromey.com>
* tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
Don't self-assign.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-win.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c index db4dc10..785c623 100644 --- a/gdb/tui/tui-win.c +++ b/gdb/tui/tui-win.c @@ -1194,10 +1194,10 @@ tui_adjust_win_heights (struct tui_win_info *primary_win_info, /* See tui-data.h. */ void -tui_win_info::make_invisible_and_set_new_height (int height) +tui_win_info::make_invisible_and_set_new_height (int height_) { make_visible (false); - height = height; + height = height_; if (height > 1) viewport_height = height - 1; else |