From 5515784f89171321292b21800ff54e432fd68892 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 7 Dec 2001 12:32:42 +0000 Subject: [PATCH] Combine sentance fragments into a single sentance in order to permit better translation into foreign languages. --- bfd/ChangeLog | 6 ++++++ bfd/elf.c | 12 +++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f5bdbc4c60..b339568311 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2001-12-07 Nick Clifton + + * 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 * elf32-s390.c (elf32_s390_grok_prstatus): New function. diff --git a/bfd/elf.c b/bfd/elf.c index 9c4c0870f4..a473366510 100644 --- 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; -- 2.11.0