* mips-tdep.c (n32n64_floatformat_always_valid): Use 'const void

*' for second argument instead of 'const char *'.
This commit is contained in:
Mark Kettenis 2005-09-21 20:45:46 +00:00
parent 69444d9f14
commit 2244f67142
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-09-21 Mark Kettenis <kettenis@gnu.org>
* mips-tdep.c (n32n64_floatformat_always_valid): Use 'const void
*' for second argument instead of 'const char *'.
2005-09-20 Paul Gilliam <pgilliam@us.ibm.com>
* gdb.arch/altivec-abi.exp: Elide the 'in' from what's expected

View File

@ -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;
}