mirror of
https://github.com/curl/curl.git
synced 2026-07-24 09:27:23 +03:00
fix questionable compare compiler error (unsigned can't be < 0)
This commit is contained in:
parent
bdbf6e9d19
commit
cc34342790
1 changed files with 1 additions and 1 deletions
|
|
@ -230,7 +230,7 @@ static CURLcode file_upload(struct connectdata *conn)
|
|||
if(res)
|
||||
break;
|
||||
|
||||
if (readcount <= 0)
|
||||
if (readcount <= 0) /* fix questionable compare error. curlvms */
|
||||
break;
|
||||
|
||||
nread = (size_t)readcount;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue