From eb0560e19e978d5e629b286e599fa4c63a5dc753 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 5 Nov 2019 12:51:06 +0100 Subject: trxcon: Fix missing header for GSM_MACBLOCK_LEN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Due to recent include dependency tree change in libosmocore, trxcon fails now to build since it uncovered it's missing a header inclusion for a symbol it is using: osmocom-bb/src/host/trxcon/sched_trx.h:204:20: error: ‘GSM_MACBLOCK_LEN’ undeclared here (not in a function) 204 | uint8_t mr_cache[GSM_MACBLOCK_LEN]; | ^~~~~~~~~~~~~~~~ Change-Id: Ide22e525c106342b00171a8c08bb7265d19a651b --- src/host/trxcon/sched_trx.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/host/trxcon/sched_trx.h b/src/host/trxcon/sched_trx.h index ab3883e9..f2089e88 100644 --- a/src/host/trxcon/sched_trx.h +++ b/src/host/trxcon/sched_trx.h @@ -5,6 +5,7 @@ #include #include +#include #include #include -- cgit v1.2.3