* rs6000-nat.c (child_xfer_memory): Add missing parameter

'struct mem_attrib *' required by 2001-01-23 change.
This commit is contained in:
Peter Schauer 2001-02-10 11:05:39 +00:00
parent f3988fd901
commit d737ece6da
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
* rs6000-nat.c (child_xfer_memory): Add missing parameter
'struct mem_attrib *' required by 2001-01-23 change.
2001-02-08 Jim Kingdon <jkingdon@engr.sgi.com>
Updates to "make TAGS":

View File

@ -390,7 +390,8 @@ read_word (CORE_ADDR from, int *to, int arch64)
int
child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
int write, struct target_ops *target)
int write, struct mem_attrib *attrib,
struct target_ops *target)
{
/* Round starting address down to 32-bit word boundary. */
int mask = sizeof (int) - 1;