From 0e0f2f5faff449c688a75893164b6b7dea4cded8 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 11 Nov 2013 20:10:04 +0100 Subject: pcu: Address the return without value Fixes: Coverity CID 1040959 --- src/pcu_vty.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/pcu_vty.c') 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 */ -- cgit v1.2.3