summaryrefslogtreecommitdiffstats
path: root/ld
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2013-10-10 22:51:14 +0000
committerRoland McGrath <roland@gnu.org>2013-10-10 22:51:14 +0000
commitbcb8b988f56cc6662fa0fd662f4e2fd2bbfe95b7 (patch)
treec395da45e7c3d157929de9d69470051387051b2f /ld
parent3f93abb6e7863f98993c3227c471478154bdac30 (diff)
downloadppe42-binutils-bcb8b988f56cc6662fa0fd662f4e2fd2bbfe95b7.tar.gz
ppe42-binutils-bcb8b988f56cc6662fa0fd662f4e2fd2bbfe95b7.zip
ld/
* ldmisc.c (vfinfo): Use Boolean ? "" : ":" in place of ":" + Boolean. It silences some compilers' warnings and is much less bizarre to read.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/ldmisc.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 865184f5c9..c3796fb2e7 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-10 Roland McGrath <mcgrathr@google.com>
+
+ * ldmisc.c (vfinfo): Use Boolean ? "" : ":" in place of ":" + Boolean.
+ It silences some compilers' warnings and is much less bizarre to read.
+
2013-10-09 Roland McGrath <mcgrathr@google.com>
* emultempl/elf32.em (id_note_section_size): Use ATTRIBUTE_UNUSED
diff --git a/ld/ldmisc.c b/ld/ldmisc.c
index 2569bcc671..1b69ab1da4 100644
--- a/ld/ldmisc.c
+++ b/ld/ldmisc.c
@@ -1,6 +1,6 @@
/* ldmisc.c
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
- 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012
+ 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013
Free Software Foundation, Inc.
Written by Steve Chamberlain of Cygnus Support.
@@ -361,7 +361,7 @@ vfinfo (FILE *fp, const char *fmt, va_list arg, bfd_boolean is_warning)
if (functionname != NULL && fmt[-1] == 'G')
lfinfo (fp, "%T", functionname);
else if (filename != NULL && linenumber != 0)
- fprintf (fp, "%u%s", linenumber, ":" + done);
+ fprintf (fp, "%u%s", linenumber, done ? "" : ":");
else
done = FALSE;
}
OpenPOWER on IntegriCloud