From 850695ab1f7de5bcd04f09ce3842493a0aa6dce6 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Fri, 25 Feb 2022 17:29:10 +0100 Subject: [PATCH] CLEANUP: adjust indentation in bidir STREAM handling function Fix indentation in qc_handle_bidi_strm_frm in if condition. --- src/xprt_quic.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 6f9284986..084afaeff 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -2110,9 +2110,8 @@ static int qc_handle_bidi_strm_frm(struct quic_rx_packet *pkt, if (strm_frm->offset.key == strm->rx.offset) { int ret; - if (!qc_get_buf(strm, &strm->rx.buf)) { - goto store_frm; - } + if (!qc_get_buf(strm, &strm->rx.buf)) + goto store_frm; ret = qc_strm_cpy(&strm->rx.buf, strm_frm); total += ret;