aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/http2-download.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/http2-download.c')
-rw-r--r--docs/examples/http2-download.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/http2-download.c b/docs/examples/http2-download.c
index cc9ff2b58..3425d302f 100644
--- a/docs/examples/http2-download.c
+++ b/docs/examples/http2-download.c
@@ -72,11 +72,11 @@ void dump(const char *text, int num, unsigned char *ptr, size_t size,
width = 0x40;
fprintf(stderr, "%d %s, %lu bytes (0x%lx)\n",
- num, text, size, size);
+ num, text, (unsigned long)size, (unsigned long)size);
for(i = 0; i<size; i += width) {
- fprintf(stderr, "%4.4lx: ", i);
+ fprintf(stderr, "%4.4lx: ", (unsigned long)i);
if(!nohex) {
/* hex not disabled, show it */