summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-10-31 22:24:45 +0000
committerAndrew Cagney <cagney@redhat.com>2001-10-31 22:24:45 +0000
commitbae2880345f03611532ed53653740fcc7539e06c (patch)
tree8f6edc377b17028e29724a41a88894287b760865
parent4d5b16ddf3cf461408211b101ed310facbf28659 (diff)
downloadgdb-bae2880345f03611532ed53653740fcc7539e06c.tar.gz
* remote-vx.c (net_wait): Fix typo from PIDGET change.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/remote-vx.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index bfe4f20a232..9b7f073bb26 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2001-10-31 Andrew Cagney <ac131313@redhat.com>
+
+ * remote-vx.c (net_wait): Fix typo from PIDGET change.
+
2001-10-31 Daniel Jacobowitz <drow@mvista.com>
* arm-linux-nat.c: Include <asm/ptrace.h> explicitly.
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c
index a441a93b2cb..fa7ba290a40 100644
--- a/gdb/remote-vx.c
+++ b/gdb/remote-vx.c
@@ -338,7 +338,7 @@ net_wait (RDB_EVENT *pEvent)
memset ((char *) pEvent, '\0', sizeof (RDB_EVENT));
- pid = PIDGET inferior_ptid);
+ pid = PIDGET (inferior_ptid);
status = net_clnt_call (PROCESS_WAIT, xdr_int, &pid, xdr_RDB_EVENT,
pEvent);