Use better type for i.

This commit is contained in:
Pawel Jakub Dawidek 2014-09-03 15:08:33 +00:00
parent 04cbbf596c
commit 51d915e0d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271028

View file

@ -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);