aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-02-23 08:45:05 +0000
committerNick Clifton <nickc@redhat.com>2004-02-23 08:45:05 +0000
commitc7e7ca549d0462d01261b5c6b3c93ab0d19960fb (patch)
treea79e8b4fb0559e983e77dfb6efa754d38816206c /binutils
parentabf9b42d35842c7c4248a25da5593723e90bd5db (diff)
downloadgdb-c7e7ca549d0462d01261b5c6b3c93ab0d19960fb.zip
gdb-c7e7ca549d0462d01261b5c6b3c93ab0d19960fb.tar.gz
gdb-c7e7ca549d0462d01261b5c6b3c93ab0d19960fb.tar.bz2
(process_mips_specific): Print conflictsno as an unsigned long.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/readelf.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 974333f..6c66b18 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-23 Daniel Lucq <daniel@lucq.org>
+
+ * readelf.c (process_mips_specific): Print conflictsno as an
+ unsigned long.
+
2004-02-21 Dmitry Timoshkov <dmitry@baikal.ru>
* dlltool.c (gen_exp_file): Always output names for forwarded symbols.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 258c746..ddbf781 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -9787,8 +9787,8 @@ process_mips_specific (FILE *file)
free (econf64);
}
- printf (_("\nSection '.conflict' contains %ld entries:\n"),
- (long) conflictsno);
+ printf (_("\nSection '.conflict' contains %lu entries:\n"),
+ (unsigned long) conflictsno);
puts (_(" Num: Index Value Name"));
for (cnt = 0; cnt < conflictsno; ++cnt)