summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2009-06-19 09:23:54 +0000
committerTristan Gingold <gingold@adacore.com>2009-06-19 09:23:54 +0000
commitb8674692ae6dc6be8d235e2a4cef7f13402f2322 (patch)
treec20426c66e439111b4c4d249af8b52eca3e5be68 /bfd
parent046b007d8597642e05e5b51d9e9e8fa15b9c839e (diff)
downloadbinutils-gdb-b8674692ae6dc6be8d235e2a4cef7f13402f2322.tar.gz
2009-06-19 Tristan Gingold <gingold@adacore.com>
* mach-o.c (bfd_mach_o_print_private_header): Fix format character.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/mach-o.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index dd7e5b2cadd..1120111a8b1 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,9 @@
2009-06-19 Tristan Gingold <gingold@adacore.com>
+ * mach-o.c (bfd_mach_o_print_private_header): Fix format character.
+
+2009-06-19 Tristan Gingold <gingold@adacore.com>
+
* mach-o.c (bfd_mach_o_scan_read_symtab_symbols): Add prototype.
(bfd_mach_o_version): Use bfd_mach_o_get_data instead of direct access.
(bfd_mach_o_valid): Ditto.
diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index e5622ee4a90..cf1d1e02394 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -3155,7 +3155,7 @@ bfd_mach_o_print_private_header (bfd *abfd, FILE *file)
fprintf (file, _(" flags : %08lx ("), h->flags);
bfd_mach_o_print_flags (bfd_mach_o_header_flags_name, h->flags, file);
fprintf (file, _(")\n"));
- fprintf (file, _(" reserved : %08lx\n"), h->reserved);
+ fprintf (file, _(" reserved : %08x\n"), h->reserved);
}
static void