mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
lsquic_qdh_cancel_stream_id(): Fix OSX compile error
This commit is contained in:
parent
1c105cf288
commit
94506e4883
1 changed files with 2 additions and 2 deletions
|
@ -709,8 +709,8 @@ lsquic_qdh_cancel_stream_id (struct qpack_dec_hdl *qdh,
|
||||||
if (nw > 0)
|
if (nw > 0)
|
||||||
{
|
{
|
||||||
if (0 == qdh_write_decoder(qdh, buf, nw))
|
if (0 == qdh_write_decoder(qdh, buf, nw))
|
||||||
LSQ_DEBUG("wrote %zd-byte Cancel Stream instruction for "
|
LSQ_DEBUG("wrote %"PRIi64"-byte Cancel Stream instruction for "
|
||||||
"stream %"PRIu64" to the decoder stream", stream_id, nw);
|
"stream %zd to the decoder stream", stream_id, nw);
|
||||||
}
|
}
|
||||||
else if (nw == 0)
|
else if (nw == 0)
|
||||||
LSQ_DEBUG("not generating Cancel Stream instruction for "
|
LSQ_DEBUG("not generating Cancel Stream instruction for "
|
||||||
|
|
Loading…
Reference in a new issue