misc: Fix the return type of the go back vty function...

Without this we will get warnings about incompatible assignments
diff --git a/openbsc/src/gprs/gb_proxy_main.c b/openbsc/src/gprs/gb_proxy_main.c
index 87efb21..32bbe38 100644
--- a/openbsc/src/gprs/gb_proxy_main.c
+++ b/openbsc/src/gprs/gb_proxy_main.c
@@ -185,7 +185,7 @@
 
 extern void *tall_msgb_ctx;
 
-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 		= "Osmocom Gb Proxy",