From fb78397cbdc652a24a7b9d0487f761ccde21728a Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 14 Aug 2017 01:19:53 +0200 Subject: Fix build after recent gsm_bts_alloc() change In openbsc.git Change-Id I61c18a7f021fcb1ec00d34a745f4e3ab03416c2d we changed the gsm_bts_alloc() function signature to include a second argument (the BTS number). This broke omso-bts, and this commit is intended to make it build again. Change-Id: I7ef7654d48c1cfc7e4ecb0b771553ec0740ce2bf --- tests/meas/meas_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/meas') diff --git a/tests/meas/meas_test.c b/tests/meas/meas_test.c index c87350ba..6c514cab 100644 --- a/tests/meas/meas_test.c +++ b/tests/meas/meas_test.c @@ -97,7 +97,7 @@ int main(int argc, char **argv) bts_log_init(NULL); osmo_stderr_target->categories[DMEAS].loglevel = LOGL_DEBUG; - bts = gsm_bts_alloc(tall_bts_ctx); + bts = gsm_bts_alloc(tall_bts_ctx, 0); if (!bts) { fprintf(stderr, "Failed to create BTS structure\n"); exit(1); -- cgit v1.2.3