aboutsummaryrefslogtreecommitdiff
path: root/gold/fileread.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2007-10-14 06:57:58 +0000
committerIan Lance Taylor <iant@google.com>2007-10-14 06:57:58 +0000
commita0c4fb0ac6d0ef13a106a7b46396e8592cd2eeb5 (patch)
treeb624f0ef3d827cd4e22a2148ad0483118ba58957 /gold/fileread.cc
parentac2d295e92564dbcd6b5eb088ef79c2e5f3888c8 (diff)
downloadfsf-binutils-gdb-a0c4fb0ac6d0ef13a106a7b46396e8592cd2eeb5.zip
fsf-binutils-gdb-a0c4fb0ac6d0ef13a106a7b46396e8592cd2eeb5.tar.gz
fsf-binutils-gdb-a0c4fb0ac6d0ef13a106a7b46396e8592cd2eeb5.tar.bz2
Remove extraneous newlines.
Diffstat (limited to 'gold/fileread.cc')
-rw-r--r--gold/fileread.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/fileread.cc b/gold/fileread.cc
index ed14d98..c4145de 100644
--- a/gold/fileread.cc
+++ b/gold/fileread.cc
@@ -438,7 +438,7 @@ Input_file::open(const General_options& options, const Dirsearch& dirpath)
name = dirpath.find(n1, n2, &this->is_in_sysroot_);
if (name.empty())
{
- gold_error(_("cannot find -l%s\n"),
+ gold_error(_("cannot find -l%s"),
this->input_argument_->name());
return false;
}
@@ -465,7 +465,7 @@ Input_file::open(const General_options& options, const Dirsearch& dirpath)
&this->is_in_sysroot_);
if (name.empty())
{
- gold_error(_("cannot find %s\n"),
+ gold_error(_("cannot find %s"),
this->input_argument_->name());
return false;
}
@@ -476,7 +476,7 @@ Input_file::open(const General_options& options, const Dirsearch& dirpath)
// Now that we've figured out where the file lives, try to open it.
if (!this->file_.open(name))
{
- gold_error(_("cannot open %s: %s\n"),
+ gold_error(_("cannot open %s: %s"),
name.c_str(), strerror(errno));
return false;
}