* inf-ttrace.c (inf_ttrace_xfer_partial): Change type of readbuf
authorMark Kettenis <kettenis@gnu.org>
Tue, 21 Jun 2005 11:58:39 +0000 (11:58 +0000)
committerMark Kettenis <kettenis@gnu.org>
Tue, 21 Jun 2005 11:58:39 +0000 (11:58 +0000)
and writebuf arguments to `gdb_byte *'.

gdb/ChangeLog
gdb/inf-ttrace.c

index e947c227733b4f03e995f0282a8e4f95b7c2d0e6..a2035292572d04532d1abeaf390cc169ccc42fba 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-21  Mark Kettenis  <kettenis@gnu.org>
+
+       * inf-ttrace.c (inf_ttrace_xfer_partial): Change type of readbuf
+       and writebuf arguments to `gdb_byte *'.
+
 2005-06-21  Wu Zhou  <woodzltc@cn.ibm.com>
 
        * MAINTAINERS (Write After Approval): Add myself.
index 7e3e79ac75db8c5c18b9526b89c3d4830ff8073e..6b20be695ec2c5fc1683540aef1994179392de47 100644 (file)
@@ -1,6 +1,6 @@
 /* Low-level child interface to ttrace.
 
-   Copyright 2004 Free Software Foundation, Inc.
+   Copyright 2004, 2005 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -863,8 +863,8 @@ inf_ttrace_xfer_memory (CORE_ADDR addr, ULONGEST len,
 
 static LONGEST
 inf_ttrace_xfer_partial (struct target_ops *ops, enum target_object object,
-                        const char *annex, void *readbuf,
-                        const void *writebuf, ULONGEST offset, LONGEST len)
+                        const char *annex, gdb_byte *readbuf,
+                        const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
 {
   switch (object)
     {