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

typecast the assigment of an unsigned variable to a signed one to prevent

picky warnings
parent e23ba31e
No related branches found
No related tags found
No related merge requests found
......@@ -403,7 +403,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
else {
/* this was all we read so its all a bad header */
k->badheader = HEADER_ALLBAD;
nread = rest_length;
nread = (ssize_t)rest_length;
}
break;
}
......
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