]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Unify messages in coff-arm.c and elf32-arm.h.
authorPhilipp Thomas <pth@suse.de>
Wed, 30 Jan 2002 14:51:39 +0000 (14:51 +0000)
committerPhilipp Thomas <pth@suse.de>
Wed, 30 Jan 2002 14:51:39 +0000 (14:51 +0000)
bfd/ChangeLog
bfd/coff-arm.c
bfd/elf32-arm.h

index 093cb8d69f0816cb8d251b1c14490a14ea320b4f..b74c6b38d36d2f825dd99a827e5e9d705c40f4a1 100644 (file)
@@ -1,3 +1,7 @@
+2002-30-01  Philipp Thomas  <pthomas@suse.de>
+
+       * coff-arm.c, elf32-elf.h: Unify messages.
+
 2002-01-30  Nick Clifton <nickc@redhat.com>
 
        * po/sv.po: Updated translation.
index df2be769540925eae879dac613134576ffda6e2e..0498dc5cdbb6197284698f0cbb7d3804fc170c4b 100644 (file)
@@ -2297,10 +2297,10 @@ coff_arm_merge_private_bfd_data (ibfd, obfd)
 
              if (INTERWORK_FLAG (ibfd))
                /* xgettext: c-format */
-               msg = _("Warning: input file %s supports interworking, whereas %s does not.");
+               msg = _("Warning: %s supports interworking, whereas %s does not.");
              else
                /* xgettext: c-format */
-               msg = _("Warning: input file %s does not support interworking, whereas %s does.");
+               msg = _("Warning: %s does not support interworking, whereas %s does.");
 
              _bfd_error_handler (msg, bfd_archive_filename (ibfd),
                                  bfd_get_filename (obfd));
@@ -2398,7 +2398,7 @@ _bfd_coff_arm_set_private_flags (abfd, flags)
     {
       if (flag)
        /* xgettext: c-format */
-       _bfd_error_handler (_("Warning: Not setting interworking flag of %s, since it has already been specified as non-interworking"),
+       _bfd_error_handler (_("Warning: Not setting interworking flag of %s since it has already been specified as non-interworking"),
                            bfd_archive_filename (abfd));
       else
        /* xgettext: c-format */
@@ -2461,7 +2461,8 @@ coff_arm_copy_private_bfd_data (src, dest)
              if (INTERWORK_FLAG (dest))
                {
                  /* xgettext:c-format */
-                 _bfd_error_handler (("Warning: Clearing the interworking bit of %s, because the non-interworking code in %s has been copied into it"),
+                 _bfd_error_handler (("\
+Warning: Clearing the interworking flag of %s because non-interworking code in %s has been linked with it"),
                                      bfd_get_filename (dest),
                                      bfd_archive_filename (src));
                }
index ab8a6b3a4327bd59a4ece0b7d3627db6ba75b3b9..afedea570216df409660814095dae6930fbfe46c 100644 (file)
@@ -2112,11 +2112,11 @@ elf32_arm_set_private_flags (abfd, flags)
        {
          if (flags & EF_ARM_INTERWORK)
            (*_bfd_error_handler) (_("\
-Warning: Not setting interwork flag of %s since it has already been specified as non-interworking"),
+Warning: Not setting interworking flag of %s since it has already been specified as non-interworking"),
                                   bfd_archive_filename (abfd));
          else
            _bfd_error_handler (_("\
-Warning: Clearing the interwork flag of %s due to outside request"),
+Warning: Clearing the interworking flag of %s due to outside request"),
                                bfd_archive_filename (abfd));
        }
     }
@@ -2164,7 +2164,7 @@ elf32_arm_copy_private_bfd_data (ibfd, obfd)
        {
          if (out_flags & EF_ARM_INTERWORK)
            _bfd_error_handler (_("\
-Warning: Clearing the interwork flag in %s because non-interworking code in %s has been linked with it"),
+Warning: Clearing the interworking flag of %s because non-interworking code in %s has been linked with it"),
                                bfd_get_filename (obfd),
                                bfd_archive_filename (ibfd));