MINOR: mux-quic: convert fin on push-frame as boolean
This is only useful to display a clear 0/1 value in the traces. This has
no impact beyond this cosmetic change.
diff --git a/src/mux_quic.c b/src/mux_quic.c
index 3242d8f..a7b3128 100644
--- a/src/mux_quic.c
+++ b/src/mux_quic.c
@@ -638,7 +638,7 @@
if (b_data(buf) || b_data(out)) {
int ret;
- char fin = qcs->flags & QC_SF_FIN_STREAM;
+ char fin = !!(qcs->flags & QC_SF_FIN_STREAM);
ret = qcs_push_frame(qcs, out, buf, fin, &frms,
qcc->tx.sent_offsets + total);