Skip to content
Snippets Groups Projects
Commit 17a3aa1d authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

minor size_t fix to kill a warning

parent 6c78b4b7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment