aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/main.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-09-16 01:56:37 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-10-14 01:23:28 +0200
commit21142f789812553b56f493d79184f5a31ab7b1cd (patch)
tree9de38f96dff4c80008c04460db5a00053c1a5412 /src/common/main.c
parentb058778df1c1ef3476aefd574c7278d11d385ade (diff)
msgb ctx: use new msgb_talloc_ctx_init() in various main()s
Diffstat (limited to 'src/common/main.c')
-rw-r--r--src/common/main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/main.c b/src/common/main.c
index 99febe03..60839df0 100644
--- a/src/common/main.c
+++ b/src/common/main.c
@@ -219,14 +219,12 @@ int bts_main(int argc, char **argv)
struct gsm_bts_role_bts *btsb;
struct gsm_bts_trx *trx;
struct e1inp_line *line;
- void *tall_msgb_ctx;
int rc, i;
printf("((*))\n |\n / \\ OsmoBTS\n");
tall_bts_ctx = talloc_named_const(NULL, 1, "OsmoBTS context");
- tall_msgb_ctx = talloc_pool(tall_bts_ctx, 100*1024);
- msgb_set_talloc_ctx(tall_msgb_ctx);
+ msgb_talloc_ctx_init(tall_bts_ctx, 100*1024);
bts_log_init(NULL);