aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/talloc_ctx.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-12-24 10:07:36 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-24 10:07:36 +0100
commit02cbff09df44715abf671d10a351092b9c8cf61b (patch)
treee6d682959cd2f4fc675b964ec1a6d0835b4331d5 /openbsc/src/talloc_ctx.c
parentd6847a940a15ba9a66f3a53d1377a127256eb363 (diff)
fix typo in talloc_ctx causing counters not to show up in talloc report
Diffstat (limited to 'openbsc/src/talloc_ctx.c')
-rw-r--r--openbsc/src/talloc_ctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/talloc_ctx.c b/openbsc/src/talloc_ctx.c
index 13ec77530..5f0ee4de8 100644
--- a/openbsc/src/talloc_ctx.c
+++ b/openbsc/src/talloc_ctx.c
@@ -32,5 +32,5 @@ void talloc_ctx_init(void)
tall_trans_ctx = talloc_named_const(tall_bsc_ctx, 0, "transaction");
tall_map_ctx = talloc_named_const(tall_bsc_ctx, 0, "trau_map_entry");
tall_upq_ctx = talloc_named_const(tall_bsc_ctx, 0, "trau_upq_entry");
- tall_ctr_ctx = talloc_named_const(tall_ctr_ctx, 0, "counter");
+ tall_ctr_ctx = talloc_named_const(tall_bsc_ctx, 0, "counter");
}