From: Thomas1664 on github <46387399+Thomas1664@users.noreply.github.com> Date: Mon, 30 Jan 2023 22:51:32 +0000 (+0100) Subject: curl_free.3: fix return type of `curl_free` X-Git-Tag: curl-7_88_0~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72d4f7d8f7733b9bfb501f34c18d513c238714cd;p=thirdparty%2Fcurl.git curl_free.3: fix return type of `curl_free` Fixes #10373 Closes #10374 --- 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