diff options
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-regs.c | 4 | ||||
-rw-r--r-- | gdb/tui/tui-regs.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c index 48e78fc..0485d04 100644 --- a/gdb/tui/tui-regs.c +++ b/gdb/tui/tui-regs.c @@ -166,12 +166,12 @@ tui_data_window::show_registers (struct reggroup *group) /* Set the data window to display the registers of the register group using the given frame. Values are refreshed only when - refresh_values_only is TRUE. */ + refresh_values_only is true. */ void tui_data_window::show_register_group (struct reggroup *group, struct frame_info *frame, - int refresh_values_only) + bool refresh_values_only) { struct gdbarch *gdbarch = get_frame_arch (frame); int nr_regs; diff --git a/gdb/tui/tui-regs.h b/gdb/tui/tui-regs.h index abf44c8..73572ef 100644 --- a/gdb/tui/tui-regs.h +++ b/gdb/tui/tui-regs.h @@ -108,7 +108,7 @@ private: void show_register_group (struct reggroup *group, struct frame_info *frame, - int refresh_values_only); + bool refresh_values_only); /* Answer the number of the last line in the regs display. If there are no registers (-1) is returned. */ |