aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/debug.c
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 /docs/examples/debug.c
parent4c735b57f7cea253db2c863b75dcce2462fa77db (diff)
examples: Fix format specifiers
Closes #2561
Diffstat (limited to 'docs/examples/debug.c')
-rw-r--r--docs/examples/debug.c6
1 files changed, 3 insertions, 3 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 */