cosmetic: bts_vty: switch is not a function, add a space

Change-Id: I3e21d8f31c8ca7359e4ed4e1c978984b7b776a82
Related: SYS#6401
This commit is contained in:
Vadim Yanitskiy 2023-04-04 01:06:49 +07:00 committed by laforge
parent b96af7d7ec
commit b8e115c646
1 changed files with 1 additions and 1 deletions

View File

@ -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);