summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc/svc.c
diff options
context:
space:
mode:
authorjraynard <jraynard@FreeBSD.org>1996-06-11 17:22:51 +0000
committerjraynard <jraynard@FreeBSD.org>1996-06-11 17:22:51 +0000
commite23bbcc2a98c2c149ee4872a1732a6b341d66f84 (patch)
tree0794adfeaf014167a9bcae491e23ec49d092fea9 /lib/libc/rpc/svc.c
parentab0ef148aeb8f95b582d87536bd38ed68b2bbf01 (diff)
downloadFreeBSD-src-e23bbcc2a98c2c149ee4872a1732a6b341d66f84.zip
FreeBSD-src-e23bbcc2a98c2c149ee4872a1732a6b341d66f84.tar.gz
Code cleanup:
Fixed a couple of nitpick warnings, plus one that slipped through the net earlier. This directory now compiles without any warnings with -Wall! (Until the next gcc upgrade...)
Diffstat (limited to 'lib/libc/rpc/svc.c')
-rw-r--r--lib/libc/rpc/svc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c
index 3bc9c1d..06c0609 100644
--- a/lib/libc/rpc/svc.c
+++ b/lib/libc/rpc/svc.c
@@ -30,7 +30,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";*/
/*static char *sccsid = "from: @(#)svc.c 2.4 88/08/11 4.0 RPCSRC";*/
-static char *rcsid = "$Id: svc.c,v 1.3 1995/10/22 14:51:34 phk Exp $";
+static char *rcsid = "$Id: svc.c,v 1.4 1996/06/10 00:49:18 jraynard Exp $";
#endif
/*
@@ -417,7 +417,7 @@ svc_getreqset(readfds)
setsize = _rpc_dtablesize();
maskp = (u_long *)readfds->fds_bits;
for (sock = 0; sock < setsize; sock += NFDBITS) {
- for (mask = *maskp++; bit = ffs(mask); mask ^= (1 << (bit - 1))) {
+ for (mask = *maskp++; (bit = ffs(mask)); mask ^= (1 << (bit - 1))) {
/* sock has input waiting */
xprt = xports[sock + bit - 1];
#else
OpenPOWER on IntegriCloud