summaryrefslogtreecommitdiff
path: root/tests/libtest/lib1591.c
diff options
context:
space:
mode:
authorOlaf Hering <olaf@aepfle.de>2020-12-30 17:01:47 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-12-30 22:20:24 +0100
commitf2ed79d8eec468612a29bee4f7ef286ccf255c96 (patch)
tree9f203c63add78f6a5680937f35c0369564563e0b /tests/libtest/lib1591.c
parent0a5b8af777efbcbc7d2bb0aeb7ae8f34d88270d0 (diff)
downloadcurl-f2ed79d8eec468612a29bee4f7ef286ccf255c96.tar.gz
docs/examples: adjust prototypes for CURLOPT_READFUNCTION
The type of the buffer in curl_read_callback is 'char *', not 'void *'. Signed-off-by: Olaf Hering <olaf@aepfle.de> Closes #6392
Diffstat (limited to 'tests/libtest/lib1591.c')
-rw-r--r--tests/libtest/lib1591.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib1591.c b/tests/libtest/lib1591.c
index 6dbafb25f..8349b1db5 100644
--- a/tests/libtest/lib1591.c
+++ b/tests/libtest/lib1591.c
@@ -32,7 +32,7 @@
static char data [] = "Hello Cloud!\r\n";
static size_t consumed = 0;
-static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *stream)
+static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream)
{
size_t amount = nmemb * size; /* Total bytes curl wants */