summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc/pmap_rmt.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-12-07 12:50:56 +0000
committerbde <bde@FreeBSD.org>1995-12-07 12:50:56 +0000
commitd68b99dfe36ed5a1dcefccd0d8795d3ee2714366 (patch)
tree1bd58ddeed69271e6d05dece2b31106a5d6189c2 /lib/libc/rpc/pmap_rmt.c
parentc30f46c534617c688a4773ed830c44daa04853ee (diff)
downloadFreeBSD-src-d68b99dfe36ed5a1dcefccd0d8795d3ee2714366.zip
FreeBSD-src-d68b99dfe36ed5a1dcefccd0d8795d3ee2714366.tar.gz
Fixed type mismatches.
Diffstat (limited to 'lib/libc/rpc/pmap_rmt.c')
-rw-r--r--lib/libc/rpc/pmap_rmt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/rpc/pmap_rmt.c b/lib/libc/rpc/pmap_rmt.c
index f0cf547..8511206 100644
--- a/lib/libc/rpc/pmap_rmt.c
+++ b/lib/libc/rpc/pmap_rmt.c
@@ -30,7 +30,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)pmap_rmt.c 1.21 87/08/27 Copyr 1984 Sun Micro";*/
/*static char *sccsid = "from: @(#)pmap_rmt.c 2.2 88/08/01 4.0 RPCSRC";*/
-static char *rcsid = "$Id: pmap_rmt.c,v 1.2 1995/05/30 05:41:27 rgrimes Exp $";
+static char *rcsid = "$Id: pmap_rmt.c,v 1.3 1995/10/22 14:51:32 phk Exp $";
#endif
/*
@@ -330,8 +330,8 @@ clnt_broadcast(prog, vers, proc, xargs, argsp, xresults, resultsp, eachresult)
msg.acpted_rply.ar_results.where = (caddr_t)&r;
msg.acpted_rply.ar_results.proc = xdr_rmtcallres;
readfds = mask;
- switch (select(_rpc_dtablesize(), &readfds, (int *)NULL,
- (int *)NULL, &t)) {
+ switch (select(_rpc_dtablesize(), &readfds, (fd_set *)NULL,
+ (fd_set *)NULL, &t)) {
case 0: /* timed out */
stat = RPC_TIMEDOUT;
OpenPOWER on IntegriCloud