Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / mach-o.c
index a6299d05dc4401ed5ac8603d16a2c3b0f4866b7a..f26be0c73ea04c0f848f0ad4574395cfca04e479 100644 (file)
@@ -2817,8 +2817,9 @@ bfd_mach_o_build_exec_seg_command (bfd *abfd, bfd_mach_o_segment_command *seg)
        {
          _bfd_error_handler
            /* xgettext:c-format */
-           (_("section address (%#Lx) below start of segment (%#Lx)"),
-              s->addr, vma);
+           (_("section address (%#" PRIx64 ") "
+              "below start of segment (%#" PRIx64 ")"),
+              (uint64_t) s->addr, (uint64_t) vma);
          return FALSE;
        }
 
@@ -4759,7 +4760,7 @@ bfd_mach_o_read_command (bfd *abfd, bfd_mach_o_load_command *command)
       break;
     default:
       command->len = 0;
-      _bfd_error_handler (_("%B: unknown load command %#x"),
+      _bfd_error_handler (_("%pB: unknown load command %#x"),
                          abfd, command->type);
       return FALSE;
     }
@@ -5901,7 +5902,7 @@ bfd_boolean bfd_mach_o_free_cached_info (bfd *abfd)
 /* Not yet handled: creating an archive.  */
 #define bfd_mach_o_mkarchive                     _bfd_noarchive_mkarchive
 
-#define bfd_mach_o_close_and_cleanup             bfd_true
+#define bfd_mach_o_close_and_cleanup             _bfd_bool_bfd_true
 
 /* Not used.  */
 #define bfd_mach_o_generic_stat_arch_elt         bfd_mach_o_fat_stat_arch_elt
This page took 0.023988 seconds and 4 git commands to generate.