(process_mips_specific): Print conflictsno as an unsigned long.

From: binutils CVS HEAD branch, based on rev 1.231
Provided by: Daniel Lucq <daniel at lucq dot org>
This commit is contained in:
brad 2004-04-05 22:09:05 +00:00
parent 864b63ffa4
commit 26bfdf38be

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-binutils_readelf_c,v 1.1 2004/04/05 22:09:05 brad Exp $
--- binutils/readelf.c.orig 2004-04-05 06:14:04.000000000 -0400
+++ binutils/readelf.c 2004-04-05 06:14:44.000000000 -0400
@@ -10011,8 +10011,8 @@ process_mips_specific (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)