summaryrefslogtreecommitdiff
path: root/gdb/shnbsd-nat.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-08-14 23:43:33 +0000
committerMark Kettenis <kettenis@gnu.org>2004-08-14 23:43:33 +0000
commitebedf2f743b0e08b2d208a86bce19c047cc32361 (patch)
treef1d367867a38d5cf49fde40c565ac98b06c4291f /gdb/shnbsd-nat.c
parentad0d3b1b9db7fff33e7758908d9e35751b3a287a (diff)
downloadgdb-ebedf2f743b0e08b2d208a86bce19c047cc32361.tar.gz
Really s/PTRACE_ARG3_TYPE/PTRACE_TYPE_ARG3/g
Diffstat (limited to 'gdb/shnbsd-nat.c')
-rw-r--r--gdb/shnbsd-nat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/shnbsd-nat.c b/gdb/shnbsd-nat.c
index 53a04568f5e..db6dae58891 100644
--- a/gdb/shnbsd-nat.c
+++ b/gdb/shnbsd-nat.c
@@ -45,7 +45,7 @@ fetch_inferior_registers (int regno)
struct reg inferior_registers;
if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
- (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
+ (PTRACE_TYPE_ARG3) &inferior_registers, 0) == -1)
perror_with_name ("Couldn't get registers");
shnbsd_supply_reg ((char *) &inferior_registers, regno);
@@ -63,13 +63,13 @@ store_inferior_registers (int regno)
struct reg inferior_registers;
if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
- (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
+ (PTRACE_TYPE_ARG3) &inferior_registers, 0) == -1)
perror_with_name ("Couldn't get registers");
shnbsd_fill_reg ((char *) &inferior_registers, regno);
if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
- (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
+ (PTRACE_TYPE_ARG3) &inferior_registers, 0) == -1)
perror_with_name ("Couldn't set registers");
if (regno != -1)