mirror of
https://github.com/curl/curl.git
synced 2026-07-28 09:13:07 +03:00
quiche: fix operand of ‘?:’ changes signedness
... from ‘int’ to ‘curl_uint64_t’ Closes #14041
This commit is contained in:
parent
7fce488cd8
commit
9acf759455
1 changed files with 1 additions and 1 deletions
|
|
@ -1121,7 +1121,7 @@ out:
|
|||
nwritten = -1;
|
||||
}
|
||||
CURL_TRC_CF(data, cf, "[%" CURL_PRIu64 "] cf_send(len=%zu) -> %zd, %d",
|
||||
stream? stream->id : -1, len, nwritten, *err);
|
||||
stream? stream->id : (uint64_t)~0, len, nwritten, *err);
|
||||
return nwritten;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue