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);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to