* procfs.c (procfs_xfer_partial): Use WRITEBUF instead of READBUF
authorMark Kettenis <kettenis@gnu.org>
Tue, 5 Oct 2004 11:24:21 +0000 (11:24 +0000)
committerMark Kettenis <kettenis@gnu.org>
Tue, 5 Oct 2004 11:24:21 +0000 (11:24 +0000)
when writing to memory.

gdb/ChangeLog
gdb/procfs.c

index e631089..c48e3d0 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-05  Mark Kettenis  <kettenis@jive.nl>
+
+       * procfs.c (procfs_xfer_partial): Use WRITEBUF instead of READBUF
+       when writing to memory.
+
 2004-10-05  Kei Sakamoto  <sakamoto.kei@renesas.com>
 
        * m32r-tdep.c (m32r_use_struct_convention): Delete function.
index 0a1f152..467135b 100644 (file)
@@ -4329,7 +4329,7 @@ procfs_xfer_partial (struct target_ops *ops, enum target_object object,
        return (*ops->to_xfer_memory) (offset, readbuf, len, 0/*write*/,
                                       NULL, ops);
       if (writebuf)
-       return (*ops->to_xfer_memory) (offset, readbuf, len, 1/*write*/,
+       return (*ops->to_xfer_memory) (offset, writebuf, len, 1/*write*/,
                                       NULL, ops);
       return -1;