From 8dc2321be09aa1a8749f5bb4ab51bc7c610752bf Mon Sep 17 00:00:00 2001 From: Darrin Smart Date: Mon, 27 Apr 2020 13:26:29 -0700 Subject: [PATCH] lsquic_qdh_cancel_stream_id(): Fix OSX compile error --- src/liblsquic/lsquic_qdec_hdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liblsquic/lsquic_qdec_hdl.c b/src/liblsquic/lsquic_qdec_hdl.c index 81e6478..faae9eb 100644 --- a/src/liblsquic/lsquic_qdec_hdl.c +++ b/src/liblsquic/lsquic_qdec_hdl.c @@ -709,8 +709,8 @@ lsquic_qdh_cancel_stream_id (struct qpack_dec_hdl *qdh, if (nw > 0) { if (0 == qdh_write_decoder(qdh, buf, nw)) - LSQ_DEBUG("wrote %"PRIi64"-byte Cancel Stream instruction for " - "stream %zd to the decoder stream", stream_id, nw); + LSQ_DEBUG("wrote %zd-byte Cancel Stream instruction for " + "stream %"PRIu64" to the decoder stream", nw, stream_id); } else if (nw == 0) LSQ_DEBUG("not generating Cancel Stream instruction for "