mirror of
https://github.com/curl/curl.git
synced 2026-07-26 05:07:22 +03:00
typecast the assigment of an unsigned variable to a signed one to prevent
picky warnings
This commit is contained in:
parent
e23ba31eb9
commit
827a805966
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue