From b22432c3183e456002a06141bc933b366d34b000 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 23 Feb 2004 08:45:05 +0000 Subject: [PATCH] (process_mips_specific): Print conflictsno as an unsigned long. --- binutils/ChangeLog | 5 +++++ binutils/readelf.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 974333fc0..6c66b18da 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2004-02-23 Daniel Lucq + + * readelf.c (process_mips_specific): Print conflictsno as an + unsigned long. + 2004-02-21 Dmitry Timoshkov * dlltool.c (gen_exp_file): Always output names for forwarded symbols. diff --git a/binutils/readelf.c b/binutils/readelf.c index 258c746e2..ddbf7819e 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) -- 2.11.4.GIT