diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-23 01:14:47 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-23 01:14:47 +0000 |
commit | c3cabecb471111ee81d8a57a9affa63f594a74dc (patch) | |
tree | df316f41c0f210ab73dc2858e46a76c8a3c02cf6 /gdb/remote-vx.c | |
parent | 2d6282816177d2d9a9e4483ebfa89a1e1d0e8a54 (diff) | |
download | gdb-c3cabecb471111ee81d8a57a9affa63f594a74dc.zip gdb-c3cabecb471111ee81d8a57a9affa63f594a74dc.tar.gz gdb-c3cabecb471111ee81d8a57a9affa63f594a74dc.tar.bz2 |
* remote-vx.c: Rename pid parameter to pid_to_wait_for. Some
compilers (legitimately) don't like variables in the function's
outermost block whose name is the name as a parameter.
Diffstat (limited to 'gdb/remote-vx.c')
-rw-r--r-- | gdb/remote-vx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index 3aea4d1..c8c52c0 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -858,8 +858,8 @@ sleep_ms (ms) */ static int -vx_wait (pid, status) - int pid; +vx_wait (pid_to_wait_for, status) + int pid_to_wait_for; int *status; { register int pid; |