diff options
author | Kevin Buettner <kevinb@redhat.com> | 2005-11-08 01:42:53 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2005-11-08 01:42:53 +0000 |
commit | 2fda21a6e3a55882772175026e18f3f8f4681c6e (patch) | |
tree | 84fe2d2f8872b56d4f12774e3701f7802867e92d /gdb/ia64-tdep.c | |
parent | e2b7c96630b46f3da7c97525ba900c638b679c8d (diff) | |
download | gdb-2fda21a6e3a55882772175026e18f3f8f4681c6e.zip gdb-2fda21a6e3a55882772175026e18f3f8f4681c6e.tar.gz gdb-2fda21a6e3a55882772175026e18f3f8f4681c6e.tar.bz2 |
* ia64-tdep.c (floatformat_valid): Change type of `from' from
`const char *' to `const void *'.
Diffstat (limited to 'gdb/ia64-tdep.c')
-rw-r--r-- | gdb/ia64-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index ac43d26..0d63aeb 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -324,7 +324,7 @@ ia64_dwarf_reg_to_regnum (int reg) } static int -floatformat_valid (const struct floatformat *fmt, const char *from) +floatformat_valid (const struct floatformat *fmt, const void *from) { return 1; } |