osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-mgw/+/34565?usp=email )
Change subject: mgcp-client: Fix missing include in mgcp_client_pool.h ......................................................................
mgcp-client: Fix missing include in mgcp_client_pool.h
struct vty is used as a param but it is never defined.
Change-Id: Ia27bb20a79966cb90e04720462d24a236a168ada (cherry picked from commit c415ed511372ba909e95e33845c65804ac50a182) --- M include/osmocom/mgcp_client/mgcp_client_pool.h 1 file changed, 14 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/65/34565/1
diff --git a/include/osmocom/mgcp_client/mgcp_client_pool.h b/include/osmocom/mgcp_client/mgcp_client_pool.h index ba31fb0..726eea1 100644 --- a/include/osmocom/mgcp_client/mgcp_client_pool.h +++ b/include/osmocom/mgcp_client/mgcp_client_pool.h @@ -2,6 +2,8 @@
#include <stdbool.h>
+#include <osmocom/vty/vty.h> + struct mgcp_client; struct mgcp_client_pool; struct mgcp_client_pool_member;