diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-05-29 22:28:57 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-05-29 22:28:57 +0000 |
commit | 2c34abbec7451baabaacfe905ed0ed29a553dfc7 (patch) | |
tree | 3f049ca3e7d67f070cd4217f22f3486c7998092b /gdb/regset.h | |
parent | 9f2e92c5ac8a732fa9fd3d364b91cde0f262f310 (diff) | |
download | gdb-2c34abbec7451baabaacfe905ed0ed29a553dfc7.zip gdb-2c34abbec7451baabaacfe905ed0ed29a553dfc7.tar.gz gdb-2c34abbec7451baabaacfe905ed0ed29a553dfc7.tar.bz2 |
* regset.h (collect_regset_ftype): Unconstify fourth argument.
Diffstat (limited to 'gdb/regset.h')
-rw-r--r-- | gdb/regset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/regset.h b/gdb/regset.h index 00483c7..7bc5d24 100644 --- a/gdb/regset.h +++ b/gdb/regset.h @@ -31,7 +31,7 @@ typedef void (supply_regset_ftype) (const struct regset *, struct regcache *, int, const void *, size_t); typedef void (collect_regset_ftype) (const struct regset *, const struct regcache *, - int, const void *, size_t); + int, void *, size_t); struct regset { |