1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04: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:
Jay Satiro 2018-03-31 14:51:55 -04:00
parent bea18c7f39
commit cbc0f131c2
6 changed files with 6 additions and 6 deletions

View File

@ -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);
} }
} }
} }

View File

@ -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);
} }
} }
} }

View File

@ -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);
} }
} }
} }

View File

@ -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);
} }
} }
} }

View File

@ -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);
} }
} }
} }

View File

@ -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);
} }
} }
} }