fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/32199 )
Change subject: cosmetic: bts_vty: switch is not a function, add a space ......................................................................
cosmetic: bts_vty: switch is not a function, add a space
Change-Id: I3e21d8f31c8ca7359e4ed4e1c978984b7b776a82 Related: SYS#6401 --- M src/osmo-bsc/bts_vty.c 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/99/32199/1
diff --git a/src/osmo-bsc/bts_vty.c b/src/osmo-bsc/bts_vty.c index e02c2d5..30f9c72 100644 --- a/src/osmo-bsc/bts_vty.c +++ b/src/osmo-bsc/bts_vty.c @@ -2118,7 +2118,7 @@ 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);