diff options
Diffstat (limited to 'gdb/osdata.c')
-rw-r--r-- | gdb/osdata.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/osdata.c b/gdb/osdata.c index b9014dd..9da3d07 100644 --- a/gdb/osdata.c +++ b/gdb/osdata.c @@ -337,8 +337,7 @@ info_osdata (const char *type) } } - make_cleanup_ui_out_table_begin_end (uiout, ncols, nrows, - "OSDataTable"); + ui_out_emit_table table_emitter (uiout, ncols, nrows, "OSDataTable"); /* With no columns/items, we just output an empty table, but we still output the table. This matters for MI. */ @@ -415,8 +414,6 @@ info_osdata_command (char *arg, int from_tty) info_osdata (arg); } -extern initialize_file_ftype _initialize_osdata; /* -Wmissing-prototypes */ - void _initialize_osdata (void) { |