projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f2e92c
)
* regset.h (collect_regset_ftype): Unconstify fourth argument.
author
Mark Kettenis
<kettenis@gnu.org>
Sat, 29 May 2004 22:28:57 +0000
(22:28 +0000)
committer
Mark Kettenis
<kettenis@gnu.org>
Sat, 29 May 2004 22:28:57 +0000
(22:28 +0000)
gdb/ChangeLog
patch
|
blob
|
history
gdb/regset.h
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index ffe32ed4b88dfb13f8d3eb39c50ecc5f8ff148c4..7cf96c525311842fddf35c3120e30dda52eb702c 100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-1,3
+1,7
@@
+2004-05-30 Mark Kettenis <kettenis@gnu.org>
+
+ * regset.h (collect_regset_ftype): Unconstify fourth argument.
+
2004-05-29 Mark Kettenis <kettenis@gnu.org>
* MAINTAINERS: Undelete m88k. Add myself as maintainer.
diff --git
a/gdb/regset.h
b/gdb/regset.h
index 00483c714682f55f6b2d747238168612046673f2..7bc5d2458b966b13e9146ba256e38eba2ed36314 100644
(file)
--- 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
{