fix typo in talloc_ctx causing counters not to show up in talloc report

This commit is contained in:
Harald Welte 2009-12-24 10:07:36 +01:00
parent d6847a940a
commit 02cbff09df
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}