From f1be725474848d655693e350053dd068a7f8975b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Mon, 6 Nov 2023 17:51:38 +0100 Subject: [PATCH] CLEANUP: quic: Indentation fix in qc_do_build_pkt() Modification without any functional impact. --- src/quic_tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/quic_tx.c b/src/quic_tx.c index 9f87aac..b8de12a 100644 --- a/src/quic_tx.c +++ b/src/quic_tx.c @@ -2243,8 +2243,8 @@ static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end, ack_frm_len = 0; /* Do not ack and probe at the same time. */ if ((must_ack || (qel->pktns->flags & QUIC_FL_PKTNS_ACK_REQUIRED)) && !qel->pktns->tx.pto_probe) { - struct quic_arngs *arngs = &qel->pktns->rx.arngs; - BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root)); + struct quic_arngs *arngs = &qel->pktns->rx.arngs; + BUG_ON(eb_is_empty(&qel->pktns->rx.arngs.root)); ack_frm.tx_ack.arngs = arngs; if (qel->pktns->flags & QUIC_FL_PKTNS_NEW_LARGEST_PN) { qel->pktns->tx.ack_delay = -- 1.7.10.4