From 72d4f7d8f7733b9bfb501f34c18d513c238714cd Mon Sep 17 00:00:00 2001 From: Thomas1664 on github <46387399+Thomas1664@users.noreply.github.com> Date: Mon, 30 Jan 2023 23:51:32 +0100 Subject: [PATCH] curl_free.3: fix return type of `curl_free` Fixes #10373 Closes #10374 --- docs/libcurl/curl_free.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/libcurl/curl_free.3 b/docs/libcurl/curl_free.3 index 4333d7625d..7513c89d17 100644 --- a/docs/libcurl/curl_free.3 +++ b/docs/libcurl/curl_free.3 @@ -28,7 +28,7 @@ curl_free - reclaim memory that has been obtained through a libcurl call .nf #include -void curl_free(char *ptr); +void curl_free(void *ptr); .fi .SH DESCRIPTION curl_free reclaims memory that has been obtained through a libcurl call. Use -- 2.47.3