aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>1996-05-02 00:51:15 +0000
committerDavid Edelsohn <dje.gcc@gmail.com>1996-05-02 00:51:15 +0000
commit0a0d1bdd6e71c2fdb862e5c88e83dab65728e399 (patch)
tree5098e2cb553bc162b84041f5e36152463fc1a70c /ld
parent622c93a36043c2cacd314dae1cfb63eba3ec9025 (diff)
downloadgdb-0a0d1bdd6e71c2fdb862e5c88e83dab65728e399.zip
gdb-0a0d1bdd6e71c2fdb862e5c88e83dab65728e399.tar.gz
gdb-0a0d1bdd6e71c2fdb862e5c88e83dab65728e399.tar.bz2
* ldlang.c (section_already_linked): Fix typos.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/ldlang.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 9b58f9d..426c6bc 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+Wed May 1 17:50:06 1996 Doug Evans <dje@canuck.cygnus.com>
+
+ * ldlang.c (section_already_linked): Fix typos.
+
Mon Apr 29 20:31:06 1996 Doug Evans <dje@canuck.cygnus.com>
* scripttempl/pe.sc (.endjunk): Define __end__.
diff --git a/ld/ldlang.c b/ld/ldlang.c
index 1ae91d2..d3924a0 100644
--- a/ld/ldlang.c
+++ b/ld/ldlang.c
@@ -620,7 +620,7 @@ section_already_linked (abfd, sec, ignore)
break;
case SEC_LINK_DUPLICATES_ONE_ONLY:
- einfo ("%P: %B: warning: ignoring duplicate section `%s'",
+ einfo ("%P: %B: warning: ignoring duplicate section `%s'\n",
abfd, name);
break;
@@ -634,8 +634,8 @@ section_already_linked (abfd, sec, ignore)
case SEC_LINK_DUPLICATES_SAME_SIZE:
if (bfd_section_size (abfd, sec)
!= bfd_section_size (l->sec->owner, l->sec))
- einfo ("%P: %B: warning: duplicate section `%s' has different size",
- abfd, sec);
+ einfo ("%P: %B: warning: duplicate section `%s' has different size\n",
+ abfd, name);
break;
}