curl_free.3: fix return type of curl_free

Fixes #10373
Closes #10374
This commit is contained in:
Thomas1664 on github 2023-01-30 23:51:32 +01:00 committed by Daniel Stenberg
parent be5f6c3124
commit 72d4f7d8f7
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -28,7 +28,7 @@ curl_free - reclaim memory that has been obtained through a libcurl call
.nf
#include <curl/curl.h>
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