MINOR: quic: Trace typo fix in qc_release_frm()

Grammar fix without any impact.
This commit is contained in:
Frdric Lcaille 2022-08-31 17:54:30 +02:00 committed by Willy Tarreau
parent 26236f5a5d
commit a777ee36f6

View File

@ -1520,7 +1520,7 @@ void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm)
QUIC_EV_CONN_PRSAFRM, qc, f, &pn); QUIC_EV_CONN_PRSAFRM, qc, f, &pn);
} }
else { else {
TRACE_DEVEL("mark unsend frame as acked", TRACE_DEVEL("mark unsent frame as acked",
QUIC_EV_CONN_PRSAFRM, qc, f); QUIC_EV_CONN_PRSAFRM, qc, f);
} }
f->flags |= QUIC_FL_TX_FRAME_ACKED; f->flags |= QUIC_FL_TX_FRAME_ACKED;