minor size_t fix to kill a warning

This commit is contained in:
Daniel Stenberg 2004-02-27 13:21:47 +00:00
parent 6c78b4b7c0
commit 17a3aa1ddc
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@
struct send_request {
/* Remaining data to send */
const unsigned char *data;
int len;
size_t len;
/* Next request in queue */
struct send_request *next;

View File

@ -119,7 +119,7 @@ static void write_tcp_data(ares_channel channel, fd_set *write_fds, time_t now)
while (count)
{
sendreq = server->qhead;
if (count >= sendreq->len)
if ((size_t)count >= sendreq->len)
{
count -= sendreq->len;
server->qhead = sendreq->next;
@ -150,7 +150,7 @@ static void write_tcp_data(ares_channel channel, fd_set *write_fds, time_t now)
}
/* Advance the send queue by as many bytes as we sent. */
if (count == sendreq->len)
if ((size_t)count == sendreq->len)
{
server->qhead = sendreq->next;
if (server->qhead == NULL)