summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2018-05-06 19:44:03 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-05-14 09:43:15 +0200
commit13505dcb5573e256fd14daf97afefb8b9a7c6263 (patch)
treec0215e4e4d63516e18269010a0e1e882113ea790
parent4c735b57f7cea253db2c863b75dcce2462fa77db (diff)
downloadcurl-13505dcb5573e256fd14daf97afefb8b9a7c6263.tar.gz
examples: Fix format specifiers
Closes #2561
-rw-r--r--docs/examples/debug.c6
-rw-r--r--docs/examples/getinmemory.c2
-rw-r--r--docs/examples/http2-download.c6
-rw-r--r--docs/examples/http2-serverpush.c12
-rw-r--r--docs/examples/http2-upload.c6
-rw-r--r--docs/examples/multi-debugcallback.c6
-rw-r--r--docs/examples/sessioninfo.c2
7 files changed, 20 insertions, 20 deletions
diff --git a/docs/examples/debug.c b/docs/examples/debug.c
index 554eb3ec6..48a3fd5d0 100644
--- a/docs/examples/debug.c
+++ b/docs/examples/debug.c
@@ -44,12 +44,12 @@ void dump(const char *text,
/* without the hex output, we can fit more on screen */
width = 0x40;
- fprintf(stream, "%s, %10.10ld bytes (0x%8.8lx)\n",
- text, (long)size, (long)size);
+ fprintf(stream, "%s, %10.10lu bytes (0x%8.8lx)\n",
+ text, size, size);
for(i = 0; i<size; i += width) {
- fprintf(stream, "%4.4lx: ", (long)i);
+ fprintf(stream, "%4.4lx: ", i);
if(!nohex) {
/* hex not disabled, show it */
diff --git a/docs/examples/getinmemory.c b/docs/examples/getinmemory.c
index fb7947838..776bbd21a 100644
--- a/docs/examples/getinmemory.c
+++ b/docs/examples/getinmemory.c
@@ -100,7 +100,7 @@ int main(void)
* Do something nice with it!
*/
- printf("%lu bytes retrieved\n", (long)chunk.size);
+ printf("%lu bytes retrieved\n", chunk.size);
}
/* cleanup curl stuff */
diff --git a/docs/examples/http2-download.c b/docs/examples/http2-download.c
index 8515663f1..cc9ff2b58 100644
--- a/docs/examples/http2-download.c
+++ b/docs/examples/http2-download.c
@@ -71,12 +71,12 @@ void dump(const char *text, int num, unsigned char *ptr, size_t size,
/* without the hex output, we can fit more on screen */
width = 0x40;
- fprintf(stderr, "%d %s, %ld bytes (0x%lx)\n",
- num, text, (long)size, (long)size);
+ fprintf(stderr, "%d %s, %lu bytes (0x%lx)\n",
+ num, text, size, size);
for(i = 0; i<size; i += width) {
- fprintf(stderr, "%4.4lx: ", (long)i);
+ fprintf(stderr, "%4.4lx: ", i);
if(!nohex) {
/* hex not disabled, show it */
diff --git a/docs/examples/http2-serverpush.c b/docs/examples/http2-serverpush.c
index 0162a8f8a..94c8db975 100644
--- a/docs/examples/http2-serverpush.c
+++ b/docs/examples/http2-serverpush.c
@@ -51,12 +51,12 @@ void dump(const char *text, unsigned char *ptr, size_t size,
/* without the hex output, we can fit more on screen */
width = 0x40;
- fprintf(stderr, "%s, %ld bytes (0x%lx)\n",
- text, (long)size, (long)size);
+ fprintf(stderr, "%s, %lu bytes (0x%lx)\n",
+ text, size, size);
for(i = 0; i<size; i += width) {
- fprintf(stderr, "%4.4lx: ", (long)i);
+ fprintf(stderr, "%4.4lx: ", i);
if(!nohex) {
/* hex not disabled, show it */
@@ -180,12 +180,12 @@ static int server_push_callback(CURL *parent,
/* write to this file */
curl_easy_setopt(easy, CURLOPT_WRITEDATA, out);
- fprintf(stderr, "**** push callback approves stream %u, got %d headers!\n",
- count, (int)num_headers);
+ fprintf(stderr, "**** push callback approves stream %u, got %lu headers!\n",
+ count, num_headers);
for(i = 0; i<num_headers; i++) {
headp = curl_pushheader_bynum(headers, i);
- fprintf(stderr, "**** header %u: %s\n", (int)i, headp);
+ fprintf(stderr, "**** header %lu: %s\n", i, headp);
}
headp = curl_pushheader_byname(headers, ":path");
diff --git a/docs/examples/http2-upload.c b/docs/examples/http2-upload.c
index 2a08b89db..827d172ed 100644
--- a/docs/examples/http2-upload.c
+++ b/docs/examples/http2-upload.c
@@ -72,12 +72,12 @@ void dump(const char *text, int num, unsigned char *ptr, size_t size,
/* without the hex output, we can fit more on screen */
width = 0x40;
- fprintf(stderr, "%d %s, %ld bytes (0x%lx)\n",
- num, text, (long)size, (long)size);
+ fprintf(stderr, "%d %s, %lu bytes (0x%lx)\n",
+ num, text, size, size);
for(i = 0; i<size; i += width) {
- fprintf(stderr, "%4.4lx: ", (long)i);
+ fprintf(stderr, "%4.4lx: ", i);
if(!nohex) {
/* hex not disabled, show it */
diff --git a/docs/examples/multi-debugcallback.c b/docs/examples/multi-debugcallback.c
index abb0de685..5de3ff3e5 100644
--- a/docs/examples/multi-debugcallback.c
+++ b/docs/examples/multi-debugcallback.c
@@ -51,12 +51,12 @@ void dump(const char *text,
/* without the hex output, we can fit more on screen */
width = 0x40;
- fprintf(stream, "%s, %10.10ld bytes (0x%8.8lx)\n",
- text, (long)size, (long)size);
+ fprintf(stream, "%s, %10.10lu bytes (0x%8.8lx)\n",
+ text, size, size);
for(i = 0; i<size; i += width) {
- fprintf(stream, "%4.4lx: ", (long)i);
+ fprintf(stream, "%4.4lx: ", i);
if(!nohex) {
/* hex not disabled, show it */
diff --git a/docs/examples/sessioninfo.c b/docs/examples/sessioninfo.c
index 024a0e12d..86a813a04 100644
--- a/docs/examples/sessioninfo.c
+++ b/docs/examples/sessioninfo.c
@@ -63,7 +63,7 @@ static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
gnutls_x509_crt_import(cert, &chainp[i], GNUTLS_X509_FMT_DER)) {
if(GNUTLS_E_SUCCESS ==
gnutls_x509_crt_print(cert, GNUTLS_CRT_PRINT_FULL, &dn)) {
- fprintf(stderr, "Certificate #%d: %.*s", i, dn.size, dn.data);
+ fprintf(stderr, "Certificate #%u: %.*s", i, dn.size, dn.data);
gnutls_free(dn.data);
}