diff options
Diffstat (limited to 'gdb/armbsd-tdep.c')
-rw-r--r-- | gdb/armbsd-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/armbsd-tdep.c b/gdb/armbsd-tdep.c index c043b51..1b9bad7 100644 --- a/gdb/armbsd-tdep.c +++ b/gdb/armbsd-tdep.c @@ -50,7 +50,7 @@ armbsd_supply_fpregset (const struct regset *regset, struct regcache *regcache, int regnum, const void *fpregs, size_t len) { - const gdb_byte *regs = fpregs; + const gdb_byte *regs = (const gdb_byte *) fpregs; int i; gdb_assert (len >= ARMBSD_SIZEOF_FPREGS); @@ -71,7 +71,7 @@ armbsd_supply_gregset (const struct regset *regset, struct regcache *regcache, int regnum, const void *gregs, size_t len) { - const gdb_byte *regs = gregs; + const gdb_byte *regs = (const gdb_byte *) gregs; int i; gdb_assert (len >= ARMBSD_SIZEOF_GREGS); |