diff options
Diffstat (limited to 'docs/examples/getinmemory.c')
-rw-r--r-- | docs/examples/getinmemory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/getinmemory.c b/docs/examples/getinmemory.c index 776bbd21a..f5e8942f8 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", chunk.size); + printf("%lu bytes retrieved\n", (unsigned long)chunk.size); } /* cleanup curl stuff */ |