aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/main.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-09-19 20:46:51 +0200
committerHarald Welte <laforge@gnumonks.org>2011-09-19 20:46:51 +0200
commitc373448e03f12f8f7e5da1d894d63d7bc79eef4a (patch)
tree6bda0129c64c4ef49c450355783703dc633cfb52 /src/osmo-bts-sysmo/main.c
parent7899dc5fcfa49febd50cb113cc8ef45f32dacc9d (diff)
fix various compiler warnings across the code
this deals with unused cocde, unused variables and undeclared symbols in various places.
Diffstat (limited to 'src/osmo-bts-sysmo/main.c')
-rw-r--r--src/osmo-bts-sysmo/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/main.c b/src/osmo-bts-sysmo/main.c
index 35ac9eeb..645cd24a 100644
--- a/src/osmo-bts-sysmo/main.c
+++ b/src/osmo-bts-sysmo/main.c
@@ -39,6 +39,7 @@
#include <osmo-bts/abis.h>
#include <osmo-bts/bts.h>
#include <osmo-bts/vty.h>
+#include <osmo-bts/bts_model.h>
#include "l1_if.h"
@@ -68,7 +69,7 @@ int bts_model_init(struct gsm_bts *bts)
l1if_reset(fl1h);
- femtol1_vty_init(bts);
+ bts_model_vty_init(bts);
return 0;
}