Add missing ast_sorcery_generic_alloc conversions.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@392647 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2013-06-23 13:24:18 +00:00
parent 1403d1f173
commit c3f9ddc9ad
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ struct test_sorcery_object {
/*! \brief Internal function to allocate a test object */
static void *test_sorcery_object_alloc(const char *id)
{
return ao2_alloc(sizeof(struct test_sorcery_object), NULL);
return ast_sorcery_generic_alloc(sizeof(struct test_sorcery_object), NULL);
}
static struct ast_sorcery *alloc_and_initialize_sorcery(void)