这个提交包含在:
Justin R. Cutler 2016-04-08 23:06:41 -04:00
父节点 cd1b95aea3
当前提交 aa8cc3f804
共有 1 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -35,7 +35,7 @@ static int default_allocate(allocation_t *allocation, size_t size)
}
static void default_destory(allocator_t *allocator)
static void default_destroy(allocator_t *allocator)
{
/* ignore allocator */
(void) allocator;
@ -44,7 +44,7 @@ static void default_destory(allocator_t *allocator)
static allocator_t default_allocator = {
.allocate = default_allocate,
.destroy = default_destory,
.destroy = default_destroy,
};