diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-06-25 20:08:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-06-25 20:08:53 +0000 |
commit | 80f43b40c54e53920c10478a87690ffeb45384a0 (patch) | |
tree | c102c8be639d214842c31c2111e8047e30a3e446 /gdb/mi/mi-main.c | |
parent | 173d689456fdc852c50bb57963c580db5da3eee3 (diff) | |
download | gdb-80f43b40c54e53920c10478a87690ffeb45384a0.zip gdb-80f43b40c54e53920c10478a87690ffeb45384a0.tar.gz gdb-80f43b40c54e53920c10478a87690ffeb45384a0.tar.bz2 |
For data-list-register-values output a list of register values.
Diffstat (limited to 'gdb/mi/mi-main.c')
-rw-r--r-- | gdb/mi/mi-main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 1342c21..1b7a19b 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -432,7 +432,7 @@ mi_cmd_data_list_register_values (char *command, char **argv, int argc) return MI_CMD_ERROR; } - ui_out_tuple_begin (uiout, "register-values"); + ui_out_list_begin (uiout, "register-values"); if (argc == 1) /* No args, beside the format: do all the regs */ { @@ -475,7 +475,7 @@ mi_cmd_data_list_register_values (char *command, char **argv, int argc) return MI_CMD_ERROR; } } - ui_out_tuple_end (uiout); + ui_out_list_end (uiout); return MI_CMD_DONE; } |