diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-09-21 20:45:46 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-09-21 20:45:46 +0000 |
commit | 2244f6714214cc51b37eff763953c08125722e80 (patch) | |
tree | d63953fd017f022098d4145353a3e290c69c3a18 /gdb/mips-tdep.c | |
parent | 69444d9f14d4c2f5d79db7219c3baa4b59ee1e44 (diff) | |
download | gdb-2244f6714214cc51b37eff763953c08125722e80.zip gdb-2244f6714214cc51b37eff763953c08125722e80.tar.gz gdb-2244f6714214cc51b37eff763953c08125722e80.tar.bz2 |
* mips-tdep.c (n32n64_floatformat_always_valid): Use 'const void
*' for second argument instead of 'const char *'.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 670214b..3f40829 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -145,7 +145,7 @@ struct gdbarch_tdep static int n32n64_floatformat_always_valid (const struct floatformat *fmt, - const char *from) + const void *from) { return 1; } |