aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-09-22 18:02:59 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2023-09-22 18:03:02 +0200
commitc415ed511372ba909e95e33845c65804ac50a182 (patch)
tree44cbd867899145d2a93a114b14acbb73f16a6950
parent730a1f28d2543310482ade142e0ed4dcd885e371 (diff)
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
-rw-r--r--include/osmocom/mgcp_client/mgcp_client_pool.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/mgcp_client/mgcp_client_pool.h b/include/osmocom/mgcp_client/mgcp_client_pool.h
index ba31fb070..726eea135 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;