diff options
author | Daniel Jacobowitz <drow@false.org> | 2001-07-26 02:23:58 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2001-07-26 02:23:58 +0000 |
commit | 9f30d7f5405c3238886aeaf349d1769351ef8c8c (patch) | |
tree | c30babf2a007bbc5544c3edc6b0bf0274bd861fd /gdb/gdbserver/low-sun3.c | |
parent | ad3dd7ab7505cfa0fed57997c9c3613734a685eb (diff) | |
download | gdb-9f30d7f5405c3238886aeaf349d1769351ef8c8c.zip gdb-9f30d7f5405c3238886aeaf349d1769351ef8c8c.tar.gz gdb-9f30d7f5405c3238886aeaf349d1769351ef8c8c.tar.bz2 |
* infptrace.c (child_xfer_memory): Add cast to CORE_ADDR.
* infttrace.c (child_xfer_memory): Likewise.
* symm-nat.c (child_xfer_memory): Likewise.
* gdbserver/low-hppabsd.c (read_inferior_memory): Likewise.
(write_inferior_memory): Likewise.
* gdbserver/low-linux.c (read_inferior_memory): Likewise.
(write_inferior_memory): Likewise.
* gdbserver/low-lynx.c (read_inferior_memory): Likewise.
(write_inferior_memory): Likewise.
* gdbserver/low-nbsd.c (read_inferior_memory): Likewise.
(write_inferior_memory): Likewise.
* gdbserver/low-sparc.c (read_inferior_memory): Likewise.
(write_inferior_memory): Likewise.
* gdbserver/low-sun3.c (read_inferior_memory): Likewise.
(write_inferior_memory): Likewise.
Diffstat (limited to 'gdb/gdbserver/low-sun3.c')
-rw-r--r-- | gdb/gdbserver/low-sun3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbserver/low-sun3.c b/gdb/gdbserver/low-sun3.c index c1b424a..4269d57 100644 --- a/gdb/gdbserver/low-sun3.c +++ b/gdb/gdbserver/low-sun3.c @@ -215,7 +215,7 @@ read_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len) { register int i; /* Round starting address down to longword boundary. */ - register CORE_ADDR addr = memaddr & -sizeof (int); + register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (int); /* Round ending address up; get number of longwords that makes. */ register int count = (((memaddr + len) - addr) + sizeof (int) - 1) / sizeof (int); @@ -242,7 +242,7 @@ write_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len) { register int i; /* Round starting address down to longword boundary. */ - register CORE_ADDR addr = memaddr & -sizeof (int); + register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (int); /* Round ending address up; get number of longwords that makes. */ register int count = (((memaddr + len) - addr) + sizeof (int) - 1) / sizeof (int); |