diff options
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index b49e9c5..802c0b0 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -805,13 +805,13 @@ gdbsim_mourn_inferior (void) } static int -gdbsim_insert_breakpoint (CORE_ADDR addr, char *contents_cache) +gdbsim_insert_breakpoint (CORE_ADDR addr, bfd_byte *contents_cache) { return memory_insert_breakpoint (addr, contents_cache); } static int -gdbsim_remove_breakpoint (CORE_ADDR addr, char *contents_cache) +gdbsim_remove_breakpoint (CORE_ADDR addr, bfd_byte *contents_cache) { return memory_remove_breakpoint (addr, contents_cache); } |