Remove unnecessary cast in aix-thread.c:ptrace32.
[deliverable/binutils-gdb.git] / gdb / aix-thread.c
index 97a5ab382a51b86af92e1cf9d71be71d2db28c60..31c14e009ccfb62eff19dbec4743912a281fd6e2 100644 (file)
@@ -264,7 +264,7 @@ ptrace32 (int req, int id, addr_ptr addr, int data, int *buf)
 {
   errno = 0;
   return ptrace_check (req, id, 
-                      ptrace (req, id, (addr_ptr) addr, data, buf));
+                      ptrace (req, id, addr, data, buf));
 }
 
 /* If *PIDP is a composite process/thread id, convert it to a
This page took 0.030262 seconds and 4 git commands to generate.