summaryrefslogtreecommitdiff
path: root/main/astobj2.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2012-10-02 23:23:30 +0000
committerRichard Mudgett <rmudgett@digium.com>2012-10-02 23:23:30 +0000
commit9b25076e837559d70203a011f886bc0d1fff2185 (patch)
tree9a2b068176ed0b33b667fec4b1610f986b63d2e2 /main/astobj2.c
parent427abb240aa04a11e60afe1483abe7b1c41e76aa (diff)
Missed an astobj2.c debug tag.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@374279 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/astobj2.c')
-rw-r--r--main/astobj2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/astobj2.c b/main/astobj2.c
index 7e8759606..082dfc038 100644
--- a/main/astobj2.c
+++ b/main/astobj2.c
@@ -2982,7 +2982,8 @@ struct ao2_container *__ao2_container_alloc_hash(unsigned int ao2_options,
num_buckets = hash_fn ? n_buckets : 1;
container_size = sizeof(struct ao2_container_hash) + num_buckets * sizeof(struct hash_bucket);
- self = __ao2_alloc(container_size, container_destruct, ao2_options);
+ self = ao2_t_alloc_options(container_size, container_destruct, ao2_options,
+ "New hash container");
return hash_ao2_container_init(self, container_options, num_buckets,
hash_fn, sort_fn, cmp_fn);
}