diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/tui/tui.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a0455e1..9ac7b46 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2021-01-15 Andrew Burgess <andrew.burgess@embecosm.com> + + * tui/tui.c (tui_is_window_visible): Compare to nullptr, not 0. + 2021-01-14 Lancelot Six <lsix@lancelotsix.com> * MAINTAINERS (Write After Approval): Add myself. diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 3a2229d..ce8dab3 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -544,9 +544,9 @@ tui_is_window_visible (enum tui_win_type type) if (!tui_active) return false; - if (tui_win_list[type] == 0) + if (tui_win_list[type] == nullptr) return false; - + return tui_win_list[type]->is_visible (); } |