svn commit: r271028 - head/lib/libnv

Pawel Jakub Dawidek pjd at FreeBSD.org
Wed Sep 3 15:08:34 UTC 2014


Author: pjd
Date: Wed Sep  3 15:08:33 2014
New Revision: 271028
URL: http://svnweb.freebsd.org/changeset/base/271028

Log:
  Use better type for i.

Modified:
  head/lib/libnv/nvlist.c

Modified: head/lib/libnv/nvlist.c
==============================================================================
--- head/lib/libnv/nvlist.c	Wed Sep  3 15:06:47 2014	(r271027)
+++ head/lib/libnv/nvlist.c	Wed Sep  3 15:08:33 2014	(r271028)
@@ -727,8 +727,8 @@ nvlist_recv(int sock)
 	struct nvlist_header nvlhdr;
 	nvlist_t *nvl, *ret;
 	unsigned char *buf;
-	size_t nfds, size;
-	int serrno, i, *fds;
+	size_t nfds, size, i;
+	int serrno, *fds;
 
 	if (buf_recv(sock, &nvlhdr, sizeof(nvlhdr)) == -1)
 		return (NULL);


More information about the svn-src-all mailing list