diff options
author | Mark Mitchell <mark@codesourcery.com> | 2009-03-28 23:19:00 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2009-03-28 23:19:00 +0000 |
commit | 3895f85287b8cf974894402bd587dc73371973ea (patch) | |
tree | 9e883896c74d187fb872f0e55cc5a7ba92fe7ce6 /bfd/elf-attrs.c | |
parent | fd03461a93f2e080e317da40dc4929ee437ffb76 (diff) | |
download | gdb-3895f85287b8cf974894402bd587dc73371973ea.zip gdb-3895f85287b8cf974894402bd587dc73371973ea.tar.gz gdb-3895f85287b8cf974894402bd587dc73371973ea.tar.bz2 |
* coff-arm.c (coff_arm_merge_private_bfd_data): Use "error:", not
"ERROR:", in error messages.
* cpu-arm.c (bfd_arm_merge_machines): Likewise.
* elf-attrs.c (_bfd_elf_merge_object_attributes): Likewise.
* elf32-arm.c (tag_cpu_arch_combine): Likewise.
(elf32_arm_merge_eabi_attributes): Likewise.
(elf32_arm_merge_private_bfd_data): Likewise.
Diffstat (limited to 'bfd/elf-attrs.c')
-rw-r--r-- | bfd/elf-attrs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf-attrs.c b/bfd/elf-attrs.c index 568bd7c..ba28300 100644 --- a/bfd/elf-attrs.c +++ b/bfd/elf-attrs.c @@ -564,7 +564,7 @@ _bfd_elf_merge_object_attributes (bfd *ibfd, bfd *obfd) if (in_attr->i > 0 && strcmp (in_attr->s, "gnu") != 0) { _bfd_error_handler - (_("ERROR: %B: Must be processed by '%s' toolchain"), + (_("error: %B: Must be processed by '%s' toolchain"), ibfd, in_attr->s); return FALSE; } @@ -572,7 +572,7 @@ _bfd_elf_merge_object_attributes (bfd *ibfd, bfd *obfd) if (in_attr->i != out_attr->i || (in_attr->i != 0 && strcmp (in_attr->s, out_attr->s) != 0)) { - _bfd_error_handler (_("ERROR: %B: Object tag '%d, %s' is " + _bfd_error_handler (_("error: %B: Object tag '%d, %s' is " "incompatible with tag '%d, %s'"), ibfd, in_attr->i, in_attr->s ? in_attr->s : "", |