mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00:00
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
@ -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 New Issue
Block a user