diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-01-05 00:39:47 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-01-05 00:39:47 +0000 |
commit | c1e2cb9d8c5d760059171e7cd34355f64742a132 (patch) | |
tree | e93f3ff3e8cd2ce933298824185efaa320349c62 /binutils | |
parent | 7eaea5495ab1b0dfbedaba749e249cfc92b9d7c6 (diff) | |
download | gdb-c1e2cb9d8c5d760059171e7cd34355f64742a132.zip gdb-c1e2cb9d8c5d760059171e7cd34355f64742a132.tar.gz gdb-c1e2cb9d8c5d760059171e7cd34355f64742a132.tar.bz2 |
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.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/objcopy.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 3dfc33a..cee5aed 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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 diff --git a/binutils/objcopy.c b/binutils/objcopy.c index bd8dcec..73f0fd3 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -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; |