BUILD: quic: QUIC mux build fix for 32-bit build
Thank you to Ilya for having reported this issue in GH #1897 Must be backported to 2.6.
This commit is contained in:
parent
ea8aebe8c5
commit
5a5d05c71b
@ -44,13 +44,13 @@ static void qmux_trace_frm(const struct quic_frame *frm)
|
|||||||
{
|
{
|
||||||
switch (frm->type) {
|
switch (frm->type) {
|
||||||
case QUIC_FT_MAX_STREAMS_BIDI:
|
case QUIC_FT_MAX_STREAMS_BIDI:
|
||||||
chunk_appendf(&trace_buf, " max_streams=%lu",
|
chunk_appendf(&trace_buf, " max_streams=%llu",
|
||||||
frm->max_streams_bidi.max_streams);
|
(ullong)frm->max_streams_bidi.max_streams);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case QUIC_FT_MAX_STREAMS_UNI:
|
case QUIC_FT_MAX_STREAMS_UNI:
|
||||||
chunk_appendf(&trace_buf, " max_streams=%lu",
|
chunk_appendf(&trace_buf, " max_streams=%llu",
|
||||||
frm->max_streams_uni.max_streams);
|
(ullong)frm->max_streams_uni.max_streams);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user