Remove "Warning: " from error message
2010-01-04 H.J. Lu <hongjiu.lu@intel.com> PR binutils/11130 * objcopy.c (copy_object): Remove "Warning: " from error message.
This commit is contained in:
parent
7eaea5495a
commit
c1e2cb9d8c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-01-04 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR binutils/11130
|
||||
* objcopy.c (copy_object): Remove "Warning: " from error
|
||||
message.
|
||||
|
||||
2010-01-04 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 11128
|
||||
|
|
|
@ -1481,7 +1481,7 @@ copy_object (bfd *ibfd, bfd *obfd, const bfd_arch_info_type *input_arch)
|
|||
non_fatal (_("Unable to recognise the format of the input file `%s'"),
|
||||
bfd_get_archive_filename (ibfd));
|
||||
else
|
||||
non_fatal (_("Warning: Output file cannot represent architecture `%s'"),
|
||||
non_fatal (_("Output file cannot represent architecture `%s'"),
|
||||
bfd_printable_arch_mach (bfd_get_arch (ibfd),
|
||||
bfd_get_mach (ibfd)));
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue