summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc/clnt_udp.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/clnt_udp.c
parentc30f46c534617c688a4773ed830c44daa04853ee (diff)
downloadFreeBSD-src-d68b99dfe36ed5a1dcefccd0d8795d3ee2714366.zip
FreeBSD-src-d68b99dfe36ed5a1dcefccd0d8795d3ee2714366.tar.gz
Fixed type mismatches.
Diffstat (limited to 'lib/libc/rpc/clnt_udp.c')
-rw-r--r--lib/libc/rpc/clnt_udp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/rpc/clnt_udp.c b/lib/libc/rpc/clnt_udp.c
index f1ef7f6..d0da495 100644
--- a/lib/libc/rpc/clnt_udp.c
+++ b/lib/libc/rpc/clnt_udp.c
@@ -30,7 +30,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)clnt_udp.c 1.39 87/08/11 Copyr 1984 Sun Micro";*/
/*static char *sccsid = "from: @(#)clnt_udp.c 2.2 88/08/01 4.0 RPCSRC";*/
-static char *rcsid = "$Id: clnt_udp.c,v 1.4 1995/08/02 09:14:23 wpaul Exp $";
+static char *rcsid = "$Id: clnt_udp.c,v 1.5 1995/10/22 14:51:21 phk Exp $";
#endif
/*
@@ -291,8 +291,8 @@ send_again:
#endif /* def FD_SETSIZE */
for (;;) {
readfds = mask;
- switch (select(_rpc_dtablesize(), &readfds, (int *)NULL,
- (int *)NULL, &(cu->cu_wait))) {
+ switch (select(_rpc_dtablesize(), &readfds, (fd_set *)NULL,
+ (fd_set *)NULL, &(cu->cu_wait))) {
case 0:
time_waited.tv_sec += cu->cu_wait.tv_sec;
OpenPOWER on IntegriCloud