mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
* defs.h (plongest,pulongest): Renamed from paddr_u,paddr_d.
Change argument of pulongest from CORE_ADDR to ULONGEST. All callers updated. * utils.c (plongest): Renamed from paddr_d. (pulongest): Renamed from paddr_u, change arg type to ULONGEST. * remote-mips.c (send_srec): Use paddr_nz instead of paddr_u in `CORE_ADDR addr' arg of error message.
This commit is contained in:
@@ -325,7 +325,7 @@ gcore_create_callback (CORE_ADDR vaddr, unsigned long size,
|
||||
if (info_verbose)
|
||||
{
|
||||
fprintf_filtered (gdb_stdout, "Ignore segment, %s bytes at 0x%s\n",
|
||||
paddr_d (size), paddr_nz (vaddr));
|
||||
plongest (size), paddr_nz (vaddr));
|
||||
}
|
||||
|
||||
return 0;
|
||||
@@ -383,7 +383,7 @@ gcore_create_callback (CORE_ADDR vaddr, unsigned long size,
|
||||
if (info_verbose)
|
||||
{
|
||||
fprintf_filtered (gdb_stdout, "Save segment, %s bytes at 0x%s\n",
|
||||
paddr_d (size), paddr_nz (vaddr));
|
||||
plongest (size), paddr_nz (vaddr));
|
||||
}
|
||||
|
||||
bfd_set_section_size (obfd, osec, size);
|
||||
@@ -476,7 +476,7 @@ gcore_copy_callback (bfd *obfd, asection *osec, void *ignored)
|
||||
memhunk, size) != 0)
|
||||
{
|
||||
warning (_("Memory read failed for corefile section, %s bytes at 0x%s."),
|
||||
paddr_d (size), paddr (bfd_section_vma (obfd, osec)));
|
||||
plongest (size), paddr (bfd_section_vma (obfd, osec)));
|
||||
break;
|
||||
}
|
||||
if (!bfd_set_section_contents (obfd, osec, memhunk, offset, size))
|
||||
|
||||
Reference in New Issue
Block a user