diff options
Diffstat (limited to 'gdb/regcache.h')
-rw-r--r-- | gdb/regcache.h | 4 |
1 files changed, 2 insertions, 2 deletions
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''. |