svn commit: r271027 - head/lib/libnv

Pawel Jakub Dawidek pjd at FreeBSD.org
Wed Sep 3 15:06:47 UTC 2014


Author: pjd
Date: Wed Sep  3 15:06:47 2014
New Revision: 271027
URL: http://svnweb.freebsd.org/changeset/base/271027

Log:
  Declare i.
  
  Reported by:	sbruno

Modified:
  head/lib/libnv/nvlist.c

Modified: head/lib/libnv/nvlist.c
==============================================================================
--- head/lib/libnv/nvlist.c	Wed Sep  3 14:44:23 2014	(r271026)
+++ head/lib/libnv/nvlist.c	Wed Sep  3 15:06:47 2014	(r271027)
@@ -728,7 +728,7 @@ nvlist_recv(int sock)
 	nvlist_t *nvl, *ret;
 	unsigned char *buf;
 	size_t nfds, size;
-	int serrno, *fds;
+	int serrno, i, *fds;
 
 	if (buf_recv(sock, &nvlhdr, sizeof(nvlhdr)) == -1)
 		return (NULL);


More information about the svn-src-all mailing list