mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
Mach-O: misc build adjustments
Oldish gcc warns about local variables shadowing outer scope ones. Additionally %lx is not (always) suitable to print the result of bfd_get_32().
This commit is contained in:
@ -2011,7 +2011,7 @@ dump_obj_compact_unwind (bfd *abfd,
|
||||
|
||||
putchar (' ');
|
||||
printf_uint64 (bfd_get_64 (abfd, e->start));
|
||||
printf (" %08lx", bfd_get_32 (abfd, e->length));
|
||||
printf (" %08lx", (unsigned long)bfd_get_32 (abfd, e->length));
|
||||
putchar (' ');
|
||||
printf_uint64 (bfd_get_64 (abfd, e->personality));
|
||||
putchar (' ');
|
||||
|
Reference in New Issue
Block a user