mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
Compiler warning fix
This commit is contained in:
parent
eee09e79e8
commit
733a184ce0
7 changed files with 26 additions and 20 deletions
|
|
@ -477,7 +477,7 @@ int Curl_read(struct connectdata *conn, /* connection data */
|
|||
|
||||
conn->bits.stream_was_rewound = FALSE;
|
||||
|
||||
*n = bytestocopy;
|
||||
*n = (ssize_t)bytestocopy;
|
||||
|
||||
if (bytesremaining == 0) {
|
||||
return CURLE_OK;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue