From 6618125dce91585bad936af009a55449740cf3bb Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 18 Jun 2005 15:22:55 +0000 Subject: * regcache.c (regcache_raw_supply, regcache_raw_collect): Change type of last argument back to `void *'. * regcache.h (regcache_raw_supply, regcache_raw_collect): Likewise. --- gdb/regcache.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/regcache.h') diff --git a/gdb/regcache.h b/gdb/regcache.h index d02e411..707f730 100644 --- a/gdb/regcache.h +++ b/gdb/regcache.h @@ -98,9 +98,9 @@ void regcache_cooked_write_part (struct regcache *regcache, int regnum, target_fetch_registers() or target_store_registers(). */ extern void regcache_raw_supply (struct regcache *regcache, - int regnum, const gdb_byte *buf); + int regnum, const void *buf); extern void regcache_raw_collect (const struct regcache *regcache, - int regnum, gdb_byte *buf); + int regnum, void *buf); /* The register's ``offset''. -- cgit v1.1