mirror of
https://github.com/moparisthebest/curl
synced 2024-11-17 06:55:02 -05:00
docs: fix CURLINFO_*_T examples use of CURL_FORMAT_CURL_OFF_T
- Put a percent sign before each CURL_FORMAT_CURL_OFF_T in printf. For example "%" CURL_FORMAT_CURL_OFF_T becomes %lld or similar. Bug: https://curl.haxx.se/mail/lib-2018-03/0140.html Reported-by: David L.
This commit is contained in:
parent
bea18c7f39
commit
cbc0f131c2
@ -48,7 +48,7 @@ if(curl) {
|
|||||||
curl_off_t cl;
|
curl_off_t cl;
|
||||||
res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, &cl);
|
res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, &cl);
|
||||||
if(!res) {
|
if(!res) {
|
||||||
printf("Size: " CURL_FORMAT_CURL_OFF_T "\\n", cl);
|
printf("Download size: %" CURL_FORMAT_CURL_OFF_T "\\n", cl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ if(curl) {
|
|||||||
curl_off_t cl;
|
curl_off_t cl;
|
||||||
res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_UPLOAD_T, &cl);
|
res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_UPLOAD_T, &cl);
|
||||||
if(!res) {
|
if(!res) {
|
||||||
printf("Size: " CURL_FORMAT_CURL_OFF_T "\\n", cl);
|
printf("Upload size: %" CURL_FORMAT_CURL_OFF_T "\\n", cl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,7 +49,7 @@ if(curl) {
|
|||||||
curl_off_t dl;
|
curl_off_t dl;
|
||||||
res = curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD_T, &dl);
|
res = curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD_T, &dl);
|
||||||
if(!res) {
|
if(!res) {
|
||||||
printf("Downloaded " CURL_FORMAT_CURL_OFF_T " bytes\\n", cl);
|
printf("Downloaded %" CURL_FORMAT_CURL_OFF_T " bytes\\n", dl);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ if(curl) {
|
|||||||
curl_off_t ul;
|
curl_off_t ul;
|
||||||
res = curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD_T, &ul);
|
res = curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD_T, &ul);
|
||||||
if(!res) {
|
if(!res) {
|
||||||
printf("Uploaded " CURL_FORMAT_CURL_OFF_T " bytes\\n", ul);
|
printf("Uploaded %" CURL_FORMAT_CURL_OFF_T " bytes\\n", ul);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ if(curl) {
|
|||||||
curl_off_t speed;
|
curl_off_t speed;
|
||||||
res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD_T, &speed);
|
res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD_T, &speed);
|
||||||
if(!res) {
|
if(!res) {
|
||||||
printf("Download speed " CURL_FORMAT_CURL_OFF_T " bytes/sec\\n", ul);
|
printf("Download speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\\n", speed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ if(curl) {
|
|||||||
curl_off_t speed;
|
curl_off_t speed;
|
||||||
res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed);
|
res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed);
|
||||||
if(!res) {
|
if(!res) {
|
||||||
printf("Upload speed " CURL_FORMAT_CURL_OFF_T " bytes/sec\\n", ul);
|
printf("Upload speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\\n", speed);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user