aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/low-lynx.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2001-07-26 02:23:58 +0000
committerDaniel Jacobowitz <drow@false.org>2001-07-26 02:23:58 +0000
commit9f30d7f5405c3238886aeaf349d1769351ef8c8c (patch)
treec30babf2a007bbc5544c3edc6b0bf0274bd861fd /gdb/gdbserver/low-lynx.c
parentad3dd7ab7505cfa0fed57997c9c3613734a685eb (diff)
downloadgdb-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-lynx.c')
-rw-r--r--gdb/gdbserver/low-lynx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbserver/low-lynx.c b/gdb/gdbserver/low-lynx.c
index 563779d..e742207 100644
--- a/gdb/gdbserver/low-lynx.c
+++ b/gdb/gdbserver/low-lynx.c
@@ -657,7 +657,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);
@@ -684,7 +684,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);