mirror of
https://github.com/haproxy/haproxy.git
synced 2026-03-05 06:40:33 -05:00
BUILD: quic: 32bits compilation issue in cli_io_handler_dump_quic()
Replaced a %zu printf format by %llu for an uint64_t. Must be backported to 2.7.
This commit is contained in:
parent
92f4a7c614
commit
fdb1494985
1 changed files with 2 additions and 2 deletions
|
|
@ -8390,9 +8390,9 @@ static int cli_io_handler_dump_quic(struct appctx *appctx)
|
|||
chunk_appendf(&trash, " [01rtt] rx.ackrng=%-6zu tx.inflight=%-6zu\n",
|
||||
pktns->rx.arngs.sz, pktns->tx.in_flight);
|
||||
|
||||
chunk_appendf(&trash, " srtt=%-4u rttvar=%-4u rttmin=%-4u ptoc=%-4u cwnd=%-6zu\n",
|
||||
chunk_appendf(&trash, " srtt=%-4u rttvar=%-4u rttmin=%-4u ptoc=%-4u cwnd=%-6llu\n",
|
||||
qc->path->loss.srtt >> 3, qc->path->loss.rtt_var >> 2,
|
||||
qc->path->loss.rtt_min, qc->path->loss.pto_count, qc->path->cwnd);
|
||||
qc->path->loss.rtt_min, qc->path->loss.pto_count, (ullong)qc->path->cwnd);
|
||||
|
||||
|
||||
/* Streams */
|
||||
|
|
|
|||
Loading…
Reference in a new issue