code cleanup
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-12-22 11:53:29 +09:00
parent 2243a1357d
commit 5f91536a38
5 changed files with 37 additions and 57 deletions

View File

@ -93,9 +93,9 @@ hcl_heap_t* hcl_makeheap (hcl_t* hcl, hcl_oow_t size)
return HCL_NULL;
}
heap->xmmgr.alloc = xma_alloc;
heap->xmmgr.realloc = xma_realloc;
heap->xmmgr.free = xma_free;
heap->xmmgr.allocmem = xma_alloc;
heap->xmmgr.reallocmem = xma_realloc;
heap->xmmgr.freemem = xma_free;
heap->xmmgr.ctx = heap->xma;
}