OSDN Git Service

Combine sentance fragments into a single sentance in order to permit better
authornickc <nickc>
Fri, 7 Dec 2001 12:32:39 +0000 (12:32 +0000)
committernickc <nickc>
Fri, 7 Dec 2001 12:32:39 +0000 (12:32 +0000)
translation into foreign languages.

bfd/ChangeLog
bfd/elf.c

index f5bdbc4..b339568 100644 (file)
@@ -1,3 +1,9 @@
+2001-12-07  Nick Clifton  <nickc@cambridge.redhat.com>
+
+       * elf.c (assign_file_positions_for_segments): Combine sentance
+       fragments into a single sentance in order to permit better
+       translation into foreign languages.
+
 2001-12-07  Jim Blandy  <jimb@redhat.com>
 
        * elf32-s390.c (elf32_s390_grok_prstatus): New function.
index 9c4c087..a473366 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -3375,13 +3375,11 @@ assign_file_positions_for_segments (abfd)
                {
                  if (i == 0)
                    {
-                     (* _bfd_error_handler)
-                       (_("Error: First section in segment (%s) starts at 0x%x"),
-                        bfd_section_name (abfd, sec), sec->lma);
-                     (* _bfd_error_handler)
-                       (_("       whereas segment starts at 0x%x"),
-                        p->p_paddr);
-
+                     (* _bfd_error_handler) (_("\
+Error: First section in segment (%s) starts at 0x%x whereas the segment starts at 0x%x"),
+                                             bfd_section_name (abfd, sec),
+                                             sec->lma,
+                                             p->p_paddr);
                      return false;
                    }
                  p->p_memsz += adjust;