From 94506e4883f52b370af4733cd02b5d579211953d Mon Sep 17 00:00:00 2001 From: Darrin Smart Date: Sat, 25 Apr 2020 09:29:02 -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 1067f6d..81e6478 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 %zd-byte Cancel Stream instruction for " - "stream %"PRIu64" to the decoder stream", stream_id, nw); + LSQ_DEBUG("wrote %"PRIi64"-byte Cancel Stream instruction for " + "stream %zd to the decoder stream", stream_id, nw); } else if (nw == 0) LSQ_DEBUG("not generating Cancel Stream instruction for "