From e0b9a7fb6c081c7e3e7f7f737ec032a0cf475dfb Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Mon, 15 Nov 2021 00:42:12 +0300 Subject: 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 --- src/osmo-bsc/bts_vty.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/osmo-bsc/bts_vty.c') 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; } -- cgit v1.2.3