mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Use C99 format specifiers to properly print uint64_t (#297)
Co-authored-by: Matt Durgavich <mdurgavich@vivox.com>
This commit is contained in:
parent
d549a33b21
commit
6464d33767
1 changed files with 1 additions and 1 deletions
|
@ -3231,7 +3231,7 @@ ietf_full_conn_ci_going_away (struct lsquic_conn *lconn)
|
|||
{
|
||||
if (!(conn->ifc_flags & (IFC_CLOSING|IFC_GOING_AWAY)))
|
||||
{
|
||||
LSQ_INFO("connection marked as going away, last stream: %ld",
|
||||
LSQ_INFO("connection marked as going away, last stream: %" PRIu64,
|
||||
conn->ifc_max_req_id);
|
||||
conn->ifc_flags |= IFC_GOING_AWAY;
|
||||
const lsquic_stream_id_t stream_id = conn->ifc_max_req_id + N_SITS;
|
||||
|
|
Loading…
Reference in a new issue