mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
fix ARI warnings introduced by ia64-hpux patches
gdb/ChangeLog:
* ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
new-line at end of warning message.
(ia64_hpux_store_register): Remove trailing new-line at end of
error message.
* ia64-hpux-tdep.c: Rephrase comment.
* solib-ia64-hpux.c (struct dld_info): Change type of field
dld_flags from "long long" to ULONGEST.
This commit is contained in:
@@ -310,7 +310,7 @@ ia64_hpux_find_start_vma (bfd *abfd, CORE_ADDR *text_start,
|
||||
|
||||
for (i = 0; i < i_ehdrp->e_phnum; i++)
|
||||
{
|
||||
if (bfd_bread ((PTR) & phdr, sizeof (phdr), abfd) != sizeof (phdr))
|
||||
if (bfd_bread (&phdr, sizeof (phdr), abfd) != sizeof (phdr))
|
||||
error (_("failed to read segment %d in %s"), i, abfd->filename);
|
||||
|
||||
if (phdr.p_flags & PF_X
|
||||
@@ -416,7 +416,7 @@ ia64_hpux_get_load_info_addr (void)
|
||||
|
||||
struct dld_info
|
||||
{
|
||||
long long dld_flags;
|
||||
ULONGEST dld_flags;
|
||||
CORE_ADDR load_map;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user