* acconfig.h: Remove.
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-ppc64-low.c
index 9b63aa10a87e128bc1a5d5be0dc6689b14bbbd3d..6a8c17da003c1e886ca866bbe6d0187289304ef7 100644 (file)
@@ -89,7 +89,7 @@ ppc_breakpoint_at (CORE_ADDR where)
 {
   unsigned int insn;
 
-  (*the_target->read_memory) (where, (char *) &insn, 4);
+  (*the_target->read_memory) (where, (unsigned char *) &insn, 4);
   if (insn == ppc_breakpoint)
     return 1;
   /* If necessary, recognize more trap instructions here.  GDB only uses the
@@ -104,7 +104,7 @@ struct linux_target_ops the_low_target = {
   ppc_cannot_store_register,
   ppc_get_pc,
   ppc_set_pc,
-  (const char *) &ppc_breakpoint,
+  (const unsigned char *) &ppc_breakpoint,
   ppc_breakpoint_len,
   NULL,
   0,
This page took 0.023651 seconds and 4 git commands to generate.