inc/curl/typecheck-gcc.h:50:13: error: call to '_curl_easy_setopt_err_curl_off_t' declared with attribute warning: curl_easy_setopt expects a curl_off_t argument for this option [-Werror]
_curl_easy_setopt_err_curl_off_t(); \
^
curlDemo.c:453:5: note: in expansion of macro 'curl_easy_setopt'
curl_easy_setopt(curl, CURLOPT_RESUME_FROM_LARGE, downloadedSize);
解决方法:
32位 downloadedSize定义为long long 类型
64位 downloadedSize 定义为long 类型