14 lines
475 B
Diff
14 lines
475 B
Diff
--- binutils.orig/binutils/objdump.c 2019-02-25 16:12:30.394056901 +0000
|
|
+++ binutils-2.31.1/binutils/objdump.c 2019-02-25 16:13:07.224778005 +0000
|
|
@@ -2993,7 +2993,9 @@ dump_bfd_header (bfd *abfd)
|
|
static void
|
|
dump_bfd_private_header (bfd *abfd)
|
|
{
|
|
- bfd_print_private_bfd_data (abfd, stdout);
|
|
+ if (!bfd_print_private_bfd_data (abfd, stdout))
|
|
+ non_fatal (_("warning: private headers incomplete: %s"),
|
|
+ bfd_errmsg (bfd_get_error ()));
|
|
}
|
|
|
|
static void
|