Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Sep 2015 09:22:25 +0000 (UTC)
From:      Craig Rodrigues <rodrigc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287353 - head/lib/libc/rpc
Message-ID:  <201509010922.t819MPRv010326@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigc
Date: Tue Sep  1 09:22:24 2015
New Revision: 287353
URL: https://svnweb.freebsd.org/changeset/base/287353

Log:
  Use unsigned variable.
  
  Eliminates gcc 4.9 compiler warning.

Modified:
  head/lib/libc/rpc/clnt_bcast.c

Modified: head/lib/libc/rpc/clnt_bcast.c
==============================================================================
--- head/lib/libc/rpc/clnt_bcast.c	Tue Sep  1 09:09:49 2015	(r287352)
+++ head/lib/libc/rpc/clnt_bcast.c	Tue Sep  1 09:22:24 2015	(r287353)
@@ -251,7 +251,7 @@ rpc_broadcast_exp(prog, vers, proc, xarg
 	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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509010922.t819MPRv010326>