aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-08-12 10:29:46 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-08-13 10:29:46 +0200
commitdf92652c953c2bb10a21526936296a468a52c00f (patch)
treef2dce611076ce3ef908bee78a9c01ed58185cbf1 /src
parentbdcbe0a679e1a5b76c7b2f69374db4586480c625 (diff)
vty: Fix compiler warning about type changes
osmo_client_main.c:57:2: warning: initialization from incompatible pointer type .go_parent_cb = osmopcap_go_parent, ^ osmo_client_main.c:57:2: warning: (near initialization for ‘vty_info.go_parent_cb’) CCLD osmo_pcap_client CC osmo_server_main.o osmo_server_main.c:56:2: warning: initialization from incompatible pointer type .go_parent_cb = osmopcap_go_parent, ^ osmo_server_main.c:56:2: warning: (near initialization for ‘vty_info.go_parent_cb’) Change-Id: If73c85a64789ef4bff63dcfe008e918e650b428f
Diffstat (limited to 'src')
-rw-r--r--src/osmo_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo_common.c b/src/osmo_common.c
index b97394e..33ec1b2 100644
--- a/src/osmo_common.c
+++ b/src/osmo_common.c
@@ -63,7 +63,7 @@ const char *osmopcap_copyright =
"There is NO WARRANTY, to the extent permitted by law.\r\n";
-enum node_type osmopcap_go_parent(struct vty *vty)
+int osmopcap_go_parent(struct vty *vty)
{
switch (vty->node) {
case CLIENT_NODE: