diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-14 23:43:33 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-14 23:43:33 +0000 |
commit | dfeafa2f1dd53e4356b08b05ea5141d515a0d0fc (patch) | |
tree | 0880ed6fcc62af055d8816c3380d4590144c1387 /gdb/shnbsd-nat.c | |
parent | 9f8e00890b2dc522473afa6410f35a57a5043f28 (diff) | |
download | gdb-dfeafa2f1dd53e4356b08b05ea5141d515a0d0fc.zip gdb-dfeafa2f1dd53e4356b08b05ea5141d515a0d0fc.tar.gz gdb-dfeafa2f1dd53e4356b08b05ea5141d515a0d0fc.tar.bz2 |
Really s/PTRACE_ARG3_TYPE/PTRACE_TYPE_ARG3/g
Diffstat (limited to 'gdb/shnbsd-nat.c')
-rw-r--r-- | gdb/shnbsd-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/shnbsd-nat.c b/gdb/shnbsd-nat.c index 53a0456..db6dae5 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) |