Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / mach-o.c
index 734e6109d417a60789cd41d2c0c614b38b23d9c9..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;
     }
This page took 0.023159 seconds and 4 git commands to generate.