From 2986ee497bf743d5b96e4ca1064380b12decd37f Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Wed, 9 Nov 2022 02:45:27 +0700 Subject: [PATCH] bts_vty: fix wrong description used for C/I threshold values Found this bug when building with CPPFLAGS="-Wunused-macros". Change-Id: I02828acebe2d607f0e7fd3c61ce45f2af5237e49 --- src/osmo-bsc/bts_vty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osmo-bsc/bts_vty.c b/src/osmo-bsc/bts_vty.c index 711ab0630..732ed57df 100644 --- a/src/osmo-bsc/bts_vty.c +++ b/src/osmo-bsc/bts_vty.c @@ -3432,9 +3432,9 @@ DEFUN_USRATTR(cfg_power_ctrl_ci_thresh, "Set target C/I thresholds (for dynamic mode), only available in ms-power-control\n" VTY_DESC_CI_TYPE "Lower C/I value\n" - "Lower " POWER_CONTROL_MEAS_RXQUAL_DESC + "Lower " POWER_CONTROL_MEAS_CI_DESC "Upper C/I value\n" - "Upper " POWER_CONTROL_MEAS_RXQUAL_DESC) + "Upper " POWER_CONTROL_MEAS_CI_DESC) { struct gsm_power_ctrl_params *params = vty->index; const char *type = argv[0];