mirror of
https://github.com/curl/curl.git
synced 2026-07-24 18:57:18 +03:00
clang-tidy: enable and fix readability-uppercase-literal-suffix
Ref: https://clang.llvm.org/extra/clang-tidy/checks/readability/uppercase-literal-suffix.html Closes #20629
This commit is contained in:
parent
3cdc167425
commit
c07c3cac74
4 changed files with 8 additions and 7 deletions
|
|
@ -539,7 +539,7 @@ CURLcode Curl_http_auth_act(struct Curl_easy *data)
|
|||
bool pickhost = FALSE;
|
||||
bool pickproxy = FALSE;
|
||||
CURLcode result = CURLE_OK;
|
||||
unsigned long authmask = ~0ul;
|
||||
unsigned long authmask = ~0UL;
|
||||
|
||||
if(!data->set.str[STRING_BEARER])
|
||||
authmask &= (unsigned long)~CURLAUTH_BEARER;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue