svn commit: r309499 - stable/10/lib/libc/rpc

Ngie Cooper ngie at FreeBSD.org
Sat Dec 3 18:45:13 UTC 2016


Author: ngie
Date: Sat Dec  3 18:45:12 2016
New Revision: 309499
URL: https://svnweb.freebsd.org/changeset/base/309499

Log:
  MFC r287353:
  r287353 (by rodrigc):
  
  Use unsigned variable.
  
  Eliminates gcc 4.9 compiler warning.

Modified:
  stable/10/lib/libc/rpc/clnt_bcast.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/rpc/clnt_bcast.c
==============================================================================
--- stable/10/lib/libc/rpc/clnt_bcast.c	Sat Dec  3 18:40:39 2016	(r309498)
+++ stable/10/lib/libc/rpc/clnt_bcast.c	Sat Dec  3 18:45:12 2016	(r309499)
@@ -256,7 +256,7 @@ rpc_broadcast_exp(rpcprog_t prog, rpcver
 	int		inlen;
 	u_int 		maxbufsize = 0;
 	AUTH 		*sys_auth = authunix_create_default();
-	int		i;
+	u_int		i;
 	void		*handle;
 	char		uaddress[1024];	/* A self imposed limit */
 	char		*uaddrp = uaddress;


More information about the svn-src-stable mailing list