2011-04-21 Tom Tromey <tromey@redhat.com>
+ * readelf.c (process_corefile_note_segment): Change header field
+ widths.
+ (process_note): Change field widths.
+
+2011-04-21 Tom Tromey <tromey@redhat.com>
+
* readelf.c (print_gnu_note): New function.
(process_note): Use it.
note type strings. */
nt = get_note_type (pnote->type);
- printf (" %-10s\t0x%08lx\t%s\n", name, pnote->descsz, nt);
+ printf (" %-20s 0x%08lx\t%s\n", name, pnote->descsz, nt);
if (const_strneq (pnote->namedata, "IPF/VMS"))
return print_ia64_vms_note (pnote);
printf (_("\nNotes at offset 0x%08lx with length 0x%08lx:\n"),
(unsigned long) offset, (unsigned long) length);
- printf (_(" Owner\t\tData size\tDescription\n"));
+ printf (_(" %-20s %10s\tDescription\n"), _("Owner"), _("Data size"));
while (external < (Elf_External_Note *) ((char *) pnotes + length))
{