Rename ui_out_data to mi_ui_out_data
authorSimon Marchi <simon.marchi@polymtl.ca>
Sun, 27 Nov 2016 03:04:49 +0000 (22:04 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sun, 27 Nov 2016 03:04:50 +0000 (22:04 -0500)
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.

gdb/ChangeLog
gdb/mi/mi-out.c

index 218fc1ddfd9581a1f089d9571d16e41f2597b5aa..5514730ca48eee515ed0c786160700c0c3e0ef61 100644 (file)
@@ -1,3 +1,8 @@
+2016-11-26  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * mi/mi-out.c (ui_out_data): Rename to ...
+       (mi_ui_out_data): ... this.
+
 2016-11-26  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * ui-out.c (_initialize_ui_out): Remove.
index 491caf52e4ba784a0fe301a61affc1a00e9e0a56..0f484260945264217658b18abccb9be2895d4d8a 100644 (file)
 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 */