Commit cbc0f131 authored by Jay Satiro's avatar Jay Satiro
Browse files

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.
parent bea18c7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ if(curl) {
    curl_off_t cl;
    res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD_T, &cl);
    if(!res) {
      printf("Size: " CURL_FORMAT_CURL_OFF_T "\\n", cl);
      printf("Download size: %" CURL_FORMAT_CURL_OFF_T "\\n", cl);
    }
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ if(curl) {
    curl_off_t cl;
    res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_UPLOAD_T, &cl);
    if(!res) {
      printf("Size: " CURL_FORMAT_CURL_OFF_T "\\n", cl);
      printf("Upload size: %" CURL_FORMAT_CURL_OFF_T "\\n", cl);
    }
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ if(curl) {
    curl_off_t dl;
    res = curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD_T, &dl);
    if(!res) {
      printf("Downloaded " CURL_FORMAT_CURL_OFF_T " bytes\\n", cl);
      printf("Downloaded %" CURL_FORMAT_CURL_OFF_T " bytes\\n", dl);
    }
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ if(curl) {
    curl_off_t ul;
    res = curl_easy_getinfo(curl, CURLINFO_SIZE_UPLOAD_T, &ul);
    if(!res) {
      printf("Uploaded " CURL_FORMAT_CURL_OFF_T " bytes\\n", ul);
      printf("Uploaded %" CURL_FORMAT_CURL_OFF_T " bytes\\n", ul);
    }
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ if(curl) {
    curl_off_t speed;
    res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD_T, &speed);
    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);
    }
  }
}
Loading