mirror of
https://github.com/curl/curl.git
synced 2024-12-27 06:59:43 +08:00
quiche: fix operand of ‘?:’ changes signedness
... from ‘int’ to ‘curl_uint64_t’ Closes #14041
This commit is contained in:
parent
7fce488cd8
commit
9acf759455
@ -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…
Reference in New Issue
Block a user