aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/osmo-bts-litecell15/misc/lc15bts_mgr_vty.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/osmo-bts-litecell15/misc/lc15bts_mgr_vty.c b/src/osmo-bts-litecell15/misc/lc15bts_mgr_vty.c
index e1ddfc78..80751fb0 100644
--- a/src/osmo-bts-litecell15/misc/lc15bts_mgr_vty.c
+++ b/src/osmo-bts-litecell15/misc/lc15bts_mgr_vty.c
@@ -251,9 +251,9 @@ static void write_volt_limit(struct vty *vty, const char *name,
struct lc15bts_volt_limit *limit)
{
vty_out(vty, " %s%s", name, VTY_NEWLINE);
- vty_out(vty, " threshold warning min %d%s",
+ vty_out(vty, " threshold warning min %d%s",
limit->thresh_warn_min, VTY_NEWLINE);
- vty_out(vty, " threshold critical min %d%s",
+ vty_out(vty, " threshold critical min %d%s",
limit->thresh_crit_min, VTY_NEWLINE);
}
@@ -261,7 +261,7 @@ static void write_vswr_limit(struct vty *vty, const char *name,
struct lc15bts_vswr_limit *limit)
{
vty_out(vty, " %s%s", name, VTY_NEWLINE);
- vty_out(vty, " threshold warning max %d%s",
+ vty_out(vty, " threshold warning max %d%s",
limit->thresh_warn_max, VTY_NEWLINE);
}
@@ -269,9 +269,9 @@ static void write_pwr_limit(struct vty *vty, const char *name,
struct lc15bts_pwr_limit *limit)
{
vty_out(vty, " %s%s", name, VTY_NEWLINE);
- vty_out(vty, " threshold warning max %d%s",
+ vty_out(vty, " threshold warning max %d%s",
limit->thresh_warn_max, VTY_NEWLINE);
- vty_out(vty, " threshold critical max %d%s",
+ vty_out(vty, " threshold critical max %d%s",
limit->thresh_crit_max, VTY_NEWLINE);
}