aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcu_vty.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-11 20:10:04 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-11 20:10:04 +0100
commit0e0f2f5faff449c688a75893164b6b7dea4cded8 (patch)
treeebc597578af57ac4be4b825842a0c5cc8acef548 /src/pcu_vty.c
parenta6e47c7f5427c74cfaa877e815a1cb0dfe7e78a1 (diff)
pcu: Address the return without value
Fixes: Coverity CID 1040959
Diffstat (limited to 'src/pcu_vty.c')
-rw-r--r--src/pcu_vty.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pcu_vty.c b/src/pcu_vty.c
index 77627fc9..8a9255c5 100644
--- a/src/pcu_vty.c
+++ b/src/pcu_vty.c
@@ -103,6 +103,7 @@ static int config_write_pcu(struct vty *vty)
vty_out(vty, " alpha %d%s", bts->alpha, VTY_NEWLINE);
vty_out(vty, " gamma %d%s", bts->gamma * 2, VTY_NEWLINE);
+ return CMD_SUCCESS;
}
/* per-BTS configuration */