aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-01-31 16:19:23 +0100
committerMax <msuraev@sysmocom.de>2019-01-31 16:19:23 +0100
commitde81cedffe7eaf875201ecb40e270fb82ff411f6 (patch)
treecce86c1424fd83562b0c8b84b93f91c128eb9f7b
parent4ce53ff10755ccb19914a7017dad2905d0339125 (diff)
Add missing include
stream.h uses msgb from libosmocore without corresponding #include It's odd that we haven't hit this issue earlier. Change-Id: Ib8b4f4965af0fefa7dac3f2a56a5a4b76a03fd57
-rw-r--r--include/osmocom/netif/stream.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/netif/stream.h b/include/osmocom/netif/stream.h
index 166ede2..529d4d7 100644
--- a/include/osmocom/netif/stream.h
+++ b/include/osmocom/netif/stream.h
@@ -4,6 +4,8 @@
#include <stdbool.h>
#include <stdint.h>
+#include <osmocom/core/msgb.h>
+
/*! \addtogroup stream
* @{
*/