aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-09-21 19:05:30 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-09-21 19:05:30 +0200
commit2c4f32b19b681050f5a70876a77a4e1f9d86320d (patch)
treec9c4c0941dd0a08f63f56231f9cd691044838999
parent2627dc07ee5eae043195eaa63ce66512789b9e2a (diff)
cosmetic: vty: Fix formatting of if-else brackets
-rw-r--r--src/osmo-bsc/bts_trx_vty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/osmo-bsc/bts_trx_vty.c b/src/osmo-bsc/bts_trx_vty.c
index b5275ac00..6930c8db6 100644
--- a/src/osmo-bsc/bts_trx_vty.c
+++ b/src/osmo-bsc/bts_trx_vty.c
@@ -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) {