mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
Fix cast in TUI_DISASM_WIN
I noticed that the TUI_DISASM_WIN macro cast the disassembly window to a base type, rather than its correct type. This patch fixes this oversight. 2020-02-22 Tom Tromey <tom@tromey.com> * tui/tui-data.h (TUI_DISASM_WIN): Cast to tui_disasm_window. Change-Id: Ied3dbac9ef3dc48ceb9e0850fe4ada3c316dd769
This commit is contained in:
parent
283be8bfa4
commit
3b0fb49e30
@ -1,3 +1,7 @@
|
||||
2020-02-22 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* tui/tui-data.h (TUI_DISASM_WIN): Cast to tui_disasm_window.
|
||||
|
||||
2020-02-22 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* tui/tui-win.c (_initialize_tui_win): Add usage text.
|
||||
|
@ -29,6 +29,7 @@
|
||||
struct tui_cmd_window;
|
||||
struct tui_source_window_base;
|
||||
struct tui_source_window;
|
||||
struct tui_disasm_window;
|
||||
|
||||
/* A deleter that calls delwin. */
|
||||
struct curses_deleter
|
||||
@ -229,7 +230,7 @@ struct tui_win_info : public tui_gen_win_info
|
||||
extern struct tui_win_info *tui_win_list[MAX_MAJOR_WINDOWS];
|
||||
|
||||
#define TUI_SRC_WIN ((tui_source_window *) tui_win_list[SRC_WIN])
|
||||
#define TUI_DISASM_WIN ((tui_source_window_base *) tui_win_list[DISASSEM_WIN])
|
||||
#define TUI_DISASM_WIN ((tui_disasm_window *) tui_win_list[DISASSEM_WIN])
|
||||
#define TUI_DATA_WIN ((tui_data_window *) tui_win_list[DATA_WIN])
|
||||
#define TUI_CMD_WIN ((tui_cmd_window *) tui_win_list[CMD_WIN])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user