staging: rtl8723bs: Add missing braces in else statement.

The style rule to leave out braces in single line conditional statements
doesn't apply when one branch is multiple lines.

Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Quytelda Kahja 2018-03-27 01:41:06 -07:00 committed by Greg Kroah-Hartman
parent 4041eeb8fc
commit 3087985a65

View File

@ -75,8 +75,9 @@ static void update_recvframe_attrib(struct adapter *padapter,
pattrib->mdata = (u8)prxreport->md;
pattrib->data_rate = (u8)prxreport->rx_rate;
} else
} else {
pattrib->pkt_len = (u16)prxreport->pktlen;
}
}
/*