PR binutils/4292
* nm.c (print_value): Cast bfd_vma to unsigned long to suit value_format_32bit.
This commit is contained in:
parent
f5fb443987
commit
be26064bad
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue