From 13505dcb5573e256fd14daf97afefb8b9a7c6263 Mon Sep 17 00:00:00 2001 From: Rikard Falkeborn Date: Sun, 6 May 2018 19:44:03 +0200 Subject: examples: Fix format specifiers Closes #2561 --- docs/examples/getinmemory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/getinmemory.c') 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 */ -- cgit v1.2.3