From b8e115c646e9a39e6cd4290b7e95056370afdb50 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Tue, 4 Apr 2023 01:06:49 +0700 Subject: [PATCH] cosmetic: bts_vty: switch is not a function, add a space Change-Id: I3e21d8f31c8ca7359e4ed4e1c978984b7b776a82 Related: SYS#6401 --- src/osmo-bsc/bts_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bsc/bts_vty.c b/src/osmo-bsc/bts_vty.c index e02c2d5b0..30f9c72e8 100644 --- a/src/osmo-bsc/bts_vty.c +++ b/src/osmo-bsc/bts_vty.c @@ -2118,7 +2118,7 @@ DEFUN_USRATTR(cfg_bts_si2quater_uarfcn_add, struct gsm_bts *bts = vty->index; uint16_t arfcn = atoi(argv[0]), scramble = atoi(argv[1]); - switch(bts_uarfcn_add(bts, arfcn, scramble, atoi(argv[2]))) { + switch (bts_uarfcn_add(bts, arfcn, scramble, atoi(argv[2]))) { case -ENOMEM: vty_out(vty, "%% Unable to add UARFCN: max number of UARFCNs (%u) reached%s", MAX_EARFCN_LIST, VTY_NEWLINE);