aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-11-15 00:42:12 +0300
committerfixeria <vyanitskiy@sysmocom.de>2021-11-15 11:59:03 +0000
commite0b9a7fb6c081c7e3e7f7f737ec032a0cf475dfb (patch)
treefbfe6c7c8e539060812a90a4a616bd9d0178a991 /src/osmo-bsc
parent508058ee2894266cadc5435f2e506503008adab2 (diff)
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
Diffstat (limited to 'src/osmo-bsc')
-rw-r--r--src/osmo-bsc/bts_vty.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bsc/bts_vty.c b/src/osmo-bsc/bts_vty.c
index 8c2b1005c..1306a03f9 100644
--- a/src/osmo-bsc/bts_vty.c
+++ b/src/osmo-bsc/bts_vty.c
@@ -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;
}