mirror of
https://github.com/curl/curl.git
synced 2026-08-24 19:53:46 +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
|
|
@ -2732,7 +2732,7 @@ out:
|
|||
default:
|
||||
if(cerr->error_code >= NGTCP2_CRYPTO_ERROR) {
|
||||
CURL_TRC_CF(data, cf, "crypto error, tls alert=%u",
|
||||
(unsigned int)(cerr->error_code & 0xffu));
|
||||
(unsigned int)(cerr->error_code & 0xffU));
|
||||
}
|
||||
else if(cerr->error_code == NGTCP2_CONNECTION_REFUSED) {
|
||||
CURL_TRC_CF(data, cf, "connection refused by server");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue