aboutsummaryrefslogtreecommitdiff
path: root/gdb/regset.h
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-05-29 22:28:57 +0000
committerMark Kettenis <kettenis@gnu.org>2004-05-29 22:28:57 +0000
commit2c34abbec7451baabaacfe905ed0ed29a553dfc7 (patch)
tree3f049ca3e7d67f070cd4217f22f3486c7998092b /gdb/regset.h
parent9f2e92c5ac8a732fa9fd3d364b91cde0f262f310 (diff)
downloadbinutils-2c34abbec7451baabaacfe905ed0ed29a553dfc7.zip
binutils-2c34abbec7451baabaacfe905ed0ed29a553dfc7.tar.gz
binutils-2c34abbec7451baabaacfe905ed0ed29a553dfc7.tar.bz2
* regset.h (collect_regset_ftype): Unconstify fourth argument.
Diffstat (limited to 'gdb/regset.h')
-rw-r--r--gdb/regset.h2
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
{