diff options
Diffstat (limited to 'bfd/mach-o-i386.c')
-rw-r--r-- | bfd/mach-o-i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/mach-o-i386.c b/bfd/mach-o-i386.c index af8a6f3..b409022 100644 --- a/bfd/mach-o-i386.c +++ b/bfd/mach-o-i386.c @@ -32,13 +32,13 @@ static const bfd_target * bfd_mach_o_i386_object_p (bfd *abfd) { - return bfd_mach_o_header_p (abfd, 0, BFD_MACH_O_CPU_TYPE_I386); + return bfd_mach_o_header_p (abfd, 0, 0, BFD_MACH_O_CPU_TYPE_I386); } static const bfd_target * bfd_mach_o_i386_core_p (bfd *abfd) { - return bfd_mach_o_header_p (abfd, + return bfd_mach_o_header_p (abfd, 0, BFD_MACH_O_MH_CORE, BFD_MACH_O_CPU_TYPE_I386); } |