bts_vty: fix tabs-vs-spaces issues in cfg_bts_rep_dl_facch

The linter (executed by Jenkins) complains:

  src/osmo-bsc/bts_vty.c:653: ERROR:CODE_INDENT: code indent should use tabs where possible
  src/osmo-bsc/bts_vty.c:654: ERROR:CODE_INDENT: code indent should use tabs where possible
  src/osmo-bsc/bts_vty.c:656: ERROR:CODE_INDENT: code indent should use tabs where possible
  src/osmo-bsc/bts_vty.c:657: ERROR:CODE_INDENT: code indent should use tabs where possible

and blocks changes, adding V-1 when I am changing the related code.

Change-Id: If3c8c09ddff7cb945425e74344ceb4da989ddffc
This commit is contained in:
Vadim Yanitskiy 2021-11-15 00:42:12 +03:00 committed by fixeria
parent 508058ee28
commit e0b9a7fb6c
1 changed files with 4 additions and 4 deletions

View File

@ -650,11 +650,11 @@ DEFUN_USRATTR(cfg_bts_rep_dl_facch,
}
if (!strcmp(argv[0], "command")) {
bts->repeated_acch_policy.dl_facch_cmd = true;
bts->repeated_acch_policy.dl_facch_all = false;
bts->repeated_acch_policy.dl_facch_cmd = true;
bts->repeated_acch_policy.dl_facch_all = false;
} else {
bts->repeated_acch_policy.dl_facch_cmd = true;
bts->repeated_acch_policy.dl_facch_all = true;
bts->repeated_acch_policy.dl_facch_cmd = true;
bts->repeated_acch_policy.dl_facch_all = true;
}
return CMD_SUCCESS;
}