mirror of
https://github.com/curl/curl.git
synced 2026-04-18 17:51:39 +03:00
examples/sftpuploadresume: typecast fseek argument to long
/docs/examples/sftpuploadresume.c:102:12: warning: conversion to 'long
int' from 'curl_off_t {aka long long int}' may alter its value
This commit is contained in:
parent
5c39ccd83f
commit
300f40eb99
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ static int sftpResumeUpload(CURL *curlhandle, const char *remotepath,
|
|||
#ifdef _WIN32
|
||||
_fseeki64(f, remoteFileSizeByte, SEEK_SET);
|
||||
#else
|
||||
fseek(f, remoteFileSizeByte, SEEK_SET);
|
||||
fseek(f, (long)remoteFileSizeByte, SEEK_SET);
|
||||
#endif
|
||||
curl_easy_setopt(curlhandle, CURLOPT_APPEND, 1L);
|
||||
result = curl_easy_perform(curlhandle);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue