mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-17 18:43:25 +08:00
* coffdump.c (dump_coff_scope): Use double typecast for pointer P
to allow compilation for all targets.
This commit is contained in:
@ -365,7 +365,7 @@ dump_coff_scope (struct coff_scope *p)
|
||||
if (p)
|
||||
{
|
||||
tab (1);
|
||||
printf ("List of blocks %lx ",(unsigned long) p);
|
||||
printf ("List of blocks %" BFD_VMA_FMT "x ",(bfd_vma) (uintptr_t) p);
|
||||
|
||||
if (p->sec)
|
||||
printf( " %s %x..%x", p->sec->name,p->offset, p->offset + p->size -1);
|
||||
|
Reference in New Issue
Block a user