Fixed a compiler warning on uClibc.
This commit is contained in:
parent
2ea052336f
commit
38b490a310
@ -253,7 +253,7 @@ static CURLcode file_upload(struct connectdata *conn)
|
|||||||
|
|
||||||
/*skip bytes before resume point*/
|
/*skip bytes before resume point*/
|
||||||
if(data->reqdata.resume_from) {
|
if(data->reqdata.resume_from) {
|
||||||
if( nread <= data->reqdata.resume_from ) {
|
if( (curl_off_t)nread <= data->reqdata.resume_from ) {
|
||||||
data->reqdata.resume_from -= nread;
|
data->reqdata.resume_from -= nread;
|
||||||
nread = 0;
|
nread = 0;
|
||||||
buf2 = buf;
|
buf2 = buf;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user