aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorJim Wilson <wilson@tuliptree.org>2005-09-30 22:10:54 +0000
committerJim Wilson <wilson@tuliptree.org>2005-09-30 22:10:54 +0000
commit4520f868648600ed9857768530ed88fc9456acdc (patch)
tree1b1ce2ba3e9015652fb63887586ce57d27a5f79d /ld
parent3ea38ac27086efbfe6a597fdc9898a2ae7261ffb (diff)
downloadfsf-binutils-gdb-4520f868648600ed9857768530ed88fc9456acdc.zip
fsf-binutils-gdb-4520f868648600ed9857768530ed88fc9456acdc.tar.gz
fsf-binutils-gdb-4520f868648600ed9857768530ed88fc9456acdc.tar.bz2
Fix malformed error message.
* ldlang.c (lang_startup): Add missing ": " to einfo call.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/ldlang.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index e9ac27d..786fe34 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-30 James E Wilson <wilson@specifix.com>
+
+ * ldlang.c (lang_startup): Add missing ": " to einfo call.
+
2005-09-30 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.am: Run "make dep-am".
diff --git a/ld/ldlang.c b/ld/ldlang.c
index ecac4e4..fa01216 100644
--- a/ld/ldlang.c
+++ b/ld/ldlang.c
@@ -5663,7 +5663,7 @@ lang_startup (const char *name)
{
if (startup_file != NULL)
{
- einfo (_("%P%Fmultiple STARTUP files\n"));
+ einfo (_("%P%F: multiple STARTUP files\n"));
}
first_file->filename = name;
first_file->local_sym_name = name;