CURLOPT: replace (long) cast with L suffix for CURLHSTS_* macros

In curl/curl.h and the man page. To match the rest of CURLOPT macros.

Cherry-picked from #18130
This commit is contained in:
Viktor Szakats 2025-08-01 12:54:18 +02:00
parent 54da6f5a32
commit d1da9543f8
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 4 additions and 4 deletions

View file

@ -23,8 +23,8 @@ CURLOPT_HSTS_CTRL - control HSTS behavior
~~~c
#include <curl/curl.h>
#define CURLHSTS_ENABLE (long)(1<<0)
#define CURLHSTS_READONLYFILE (long)(1<<1)
#define CURLHSTS_ENABLE (1L<<0)
#define CURLHSTS_READONLYFILE (1L<<1)
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HSTS_CTRL, long bitmask);
~~~