cosmetic: vty: Fix formatting of if-else brackets

Change-Id: I7210616bc293913e5efec14eb52aeafb37f1244f
This commit is contained in:
Pau Espin 2022-09-21 19:05:30 +02:00
parent 2627dc07ee
commit 2c4f32b19b
1 changed files with 2 additions and 1 deletions

View File

@ -606,8 +606,9 @@ void lchan_dump_full_vty(struct vty *vty, struct gsm_lchan *lchan)
if (lchan->conn && lchan->conn->bsub) {
vty_out(vty, " Subscriber:%s", VTY_NEWLINE);
bsc_subscr_dump_vty(vty, lchan->conn->bsub);
} else
} else {
vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
}
if (is_ipaccess_bts(lchan->ts->trx->bts)) {
struct in_addr ia;
if (lchan->abis_ip.bound_ip) {