* vax-tdep.c (vax_return_value): Change type of readbuf and
authorMark Kettenis <kettenis@gnu.org>
Sat, 14 May 2005 11:34:43 +0000 (11:34 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sat, 14 May 2005 11:34:43 +0000 (11:34 +0000)
writebuf arguments to `gdb_byte *'.

gdb/ChangeLog
gdb/vax-tdep.c

index 1efbfeb43f11c9e96b0dd5185eab81576a5eb99e..511a4f7b2ba5bfeee38219d96a55ca736307e891 100644 (file)
@@ -1,5 +1,8 @@
 2005-05-14  Mark Kettenis  <kettenis@gnu.org>
 
+       * vax-tdep.c (vax_return_value): Change type of readbuf and
+       writebuf arguments to `gdb_byte *'.
+
        * amd64-tdep.c (amd64_return_value): Change type of readbuf and
        writebuf arguments to `gdb_byte *'.  Remove now redundant casts.
        * i386-tdep.c (i386_return_value): Change type of readbuf and
index 5fc96a3c3543de017b1773aff384b015fab1fcff..fa2761711687468bbaf4f13a5a4bd984116c1d85 100644 (file)
@@ -203,8 +203,8 @@ vax_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
 
 static enum return_value_convention
 vax_return_value (struct gdbarch *gdbarch, struct type *type,
-                 struct regcache *regcache, void *readbuf,
-                 const void *writebuf)
+                 struct regcache *regcache, gdb_byte *readbuf,
+                 const gdb_byte *writebuf)
 {
   int len = TYPE_LENGTH (type);
   gdb_byte buf[8];
This page took 0.027788 seconds and 4 git commands to generate.