man: fix argument type for CURLSHOPT_[UN]SHARE options

Closes #21232
This commit is contained in:
Viktor Szakats 2026-04-05 17:45:04 +02:00
parent f3176e0be8
commit af08d642ea
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ CURLSHOPT_SHARE - add data to share
~~~c ~~~c
#include <curl/curl.h> #include <curl/curl.h>
CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_SHARE, long type); CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_SHARE, int type);
~~~ ~~~
# DESCRIPTION # DESCRIPTION

View file

@ -23,7 +23,7 @@ CURLSHOPT_UNSHARE - remove data to share
~~~c ~~~c
#include <curl/curl.h> #include <curl/curl.h>
CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_UNSHARE, long type); CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_UNSHARE, int type);
~~~ ~~~
# DESCRIPTION # DESCRIPTION