cosmetic: Remove unneeded curly braces

Change-Id: I6d87f11ff749d027685bf539a81f43d35ff98e9a
This commit is contained in:
Pau Espin 2023-01-27 11:29:33 +01:00
parent e0a8488773
commit ea6d534369
1 changed files with 1 additions and 2 deletions

View File

@ -162,9 +162,8 @@ static struct msgb *sched_select_ctrl_msg(struct gprs_rlcmac_pdch *pdch, uint32_
msg = tbf_dl_ass_create_rlcmac_msg(tbfs->dl_ass, pdch, fn);
else if (tbf == tbfs->ul_ack)
msg = tbf_ul_ack_create_rlcmac_msg(tbfs->ul_ack, pdch, fn);
else if (tbf == tbfs->nacc) {
else if (tbf == tbfs->nacc)
msg = ms_nacc_create_rlcmac_msg(tbf->ms(), tbf, pdch, fn);
}
if (!msg) {
tbf = NULL;