Mercurial > dropbear
diff netio.c @ 1094:c45d65392c1a
Fix pointer differ in signess warnings [-Werror=pointer-sign]
author | Gaël PORTAY <gael.portay@gmail.com> |
---|---|
date | Sat, 02 May 2015 15:59:06 +0200 |
parents | b3b772646974 |
children | bb3a03feb31f |
line wrap: on
line diff
--- a/netio.c Sat May 02 16:02:22 2015 +0200 +++ b/netio.c Sat May 02 15:59:06 2015 +0200 @@ -100,7 +100,7 @@ if (c->writequeue) { /* 6 is arbitrary, enough to hold initial packets */ - int iovlen = 6; /* Linux msg_iovlen is a size_t */ + unsigned int iovlen = 6; /* Linux msg_iovlen is a size_t */ struct iovec iov[6]; packet_queue_to_iovec(c->writequeue, iov, &iovlen); message.msg_iov = iov;