2008-01-15 Michael Snyder <msnyder@specifix.com>

* corelow.c (core_xfer_partial): Comment, cut/paste error.
This commit is contained in:
Michael Snyder 2008-01-16 01:17:24 +00:00
parent 3d00b095cc
commit 662fb31bbc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-01-15 Michael Snyder <msnyder@specifix.com>
* corelow.c (core_xfer_partial): Comment, cut/paste error.
2008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
* win32-nat.c (win32_create_inferior): Restore code calling

View File

@ -520,7 +520,7 @@ core_xfer_partial (struct target_ops *ops, enum target_object object,
case TARGET_OBJECT_MEMORY:
if (readbuf)
return (*ops->deprecated_xfer_memory) (offset, readbuf,
len, 0/*write*/, NULL, ops);
len, 0/*read*/, NULL, ops);
if (writebuf)
return (*ops->deprecated_xfer_memory) (offset, (gdb_byte *) writebuf,
len, 1/*write*/, NULL, ops);