1999-09-12 Donn Terry <donn@interix.com>

* objdump.c (dump_headers): If wide_output, print Flags header.
This commit is contained in:
Ian Lance Taylor
1999-09-12 18:49:47 +00:00
parent deecf979f6
commit 8bea4d5c6c
2 changed files with 10 additions and 2 deletions

View File

@@ -385,11 +385,17 @@ dump_headers (abfd)
bfd *abfd;
{
printf (_("Sections:\n"));
#ifndef BFD64
printf (_("Idx Name Size VMA LMA File off Algn\n"));
printf (_("Idx Name Size VMA LMA File off Algn"));
#else
printf (_("Idx Name Size VMA LMA File off Algn\n"));
printf (_("Idx Name Size VMA LMA File off Algn"));
#endif
if (wide_output)
printf (_(" Flags"));
printf ("\n");
bfd_map_over_sections (abfd, dump_section_header, (PTR) NULL);
}