aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/mgcp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-06-08 16:11:06 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-09 21:40:44 +0800
commit57da4471d1511e5456d67088e2c34b1799f08b9a (patch)
treea2d5b57440384566a7f4057fbb11cd882fc9d5d4 /openbsc/src/mgcp
parent89476f5c8ffdaabada6dec3908fb6000c89f574f (diff)
misc: Fix the return type of the go back vty function...
Without this we will get warnings about incompatible assignments
Diffstat (limited to 'openbsc/src/mgcp')
-rw-r--r--openbsc/src/mgcp/mgcp_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/mgcp/mgcp_main.c b/openbsc/src/mgcp/mgcp_main.c
index 3ccd7343d..d5b6502cb 100644
--- a/openbsc/src/mgcp/mgcp_main.c
+++ b/openbsc/src/mgcp/mgcp_main.c
@@ -174,7 +174,7 @@ static int read_call_agent(struct bsc_fd *fd, unsigned int what)
return 0;
}
-extern int bsc_vty_go_parent(struct vty *vty);
+extern enum node_type bsc_vty_go_parent(struct vty *vty);
static struct vty_app_info vty_info = {
.name = "OpenBSC MGCP",