PR binutils/4292

* nm.c (print_value): Cast bfd_vma to unsigned long to suit
	value_format_32bit.
This commit is contained in:
Alan Modra 2007-04-05 06:36:35 +00:00
parent f5fb443987
commit be26064bad
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2007-04-05 Alan Modra <amodra@bigpond.net.au>
PR binutils/4292
* nm.c (print_value): Cast bfd_vma to unsigned long to suit
value_format_32bit.
2007-04-02 Nick Clifton <nickc@redhat.com>
PR binutils/4292

View File

@ -1334,7 +1334,7 @@ print_value (bfd *abfd ATTRIBUTE_UNUSED, bfd_vma val)
switch (print_width)
{
case 32:
printf (value_format_32bit, val);
printf (value_format_32bit, (unsigned long) val);
break;
case 64: