aboutsummaryrefslogtreecommitdiff
path: root/gdb/mi
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2016-11-26 22:04:49 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2016-11-26 22:04:50 -0500
commit0abe66b59fda0689c32fe9d96b3690b4d49a3027 (patch)
treed9887ce8fcf126d5c8bf6edf490325ef7525a040 /gdb/mi
parent7f904c28f5cd2dc91a118ae6169d6993aaf71f63 (diff)
Rename ui_out_data to mi_ui_out_data
Just a little cleanup, so the name is more consistent with the naming of the equivalent structures of cli and tui. It goes away in subsequent patches anyway, but it might help follow the changes in those patches... gdb/ChangeLog: * mi/mi-out.c (ui_out_data): Rename to ... (mi_ui_out_data): ... this.
Diffstat (limited to 'gdb/mi')
-rw-r--r--gdb/mi/mi-out.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mi/mi-out.c b/gdb/mi/mi-out.c
index 491caf52e4..0f48426094 100644
--- a/gdb/mi/mi-out.c
+++ b/gdb/mi/mi-out.c
@@ -27,14 +27,14 @@
typedef struct ui_file *ui_filep;
DEF_VEC_P (ui_filep);
-struct ui_out_data
+struct mi_ui_out_data
{
int suppress_field_separator;
int suppress_output;
int mi_version;
VEC (ui_filep) *streams;
};
-typedef struct ui_out_data mi_out_data;
+typedef struct mi_ui_out_data mi_out_data;
/* These are the MI output functions */