common/vty.c: remove unused variables

Change-Id: I289dda64228e81ca4c608121e50146a71e19f1e2
This commit is contained in:
Vadim Yanitskiy 2018-03-06 16:14:12 +07:00
parent 4e959b2aa0
commit 7eed026efc
1 changed files with 0 additions and 2 deletions

View File

@ -632,7 +632,6 @@ DEFUN(cfg_bts_supp_meas_toa256, cfg_bts_supp_meas_toa256_cmd,
"Report the TOA in 1/256th symbol periods\n")
{
struct gsm_bts *bts = vty->index;
struct gsm_bts_role_bts *btsb = bts_role_bts(bts);
bts->supp_meas_toa256 = true;
return CMD_SUCCESS;
@ -644,7 +643,6 @@ DEFUN(cfg_bts_no_supp_meas_toa256, cfg_bts_no_supp_meas_toa256_cmd,
"Report the TOA in 1/256th symbol periods\n")
{
struct gsm_bts *bts = vty->index;
struct gsm_bts_role_bts *btsb = bts_role_bts(bts);
bts->supp_meas_toa256 = false;
return CMD_SUCCESS;