forked from Imagelibrary/binutils-gdb
Always call the wrap_here method
This changes all existing calls to wrap_here to call the method on the appropriate ui_file instead. The choice of ui_file is determined by context.
This commit is contained in:
@@ -364,9 +364,9 @@ maint_print_all_sections (const char *header, bfd *abfd, objfile *objfile,
|
||||
const char *arg)
|
||||
{
|
||||
puts_filtered (header);
|
||||
wrap_here (8);
|
||||
gdb_stdout->wrap_here (8);
|
||||
printf_filtered ("`%s', ", bfd_get_filename (abfd));
|
||||
wrap_here (8);
|
||||
gdb_stdout->wrap_here (8);
|
||||
printf_filtered (_("file type %s.\n"), bfd_get_target (abfd));
|
||||
|
||||
int section_count = gdb_bfd_count_sections (abfd);
|
||||
|
||||
Reference in New Issue
Block a user