removed 'return' from where it's not needed

This commit is contained in:
2021-02-28 06:43:22 +00:00
parent 50148c7eab
commit 9409e8ec65
5 changed files with 50 additions and 13 deletions

View File

@ -38,7 +38,7 @@ static void* xma_realloc (hcl_mmgr_t* mmgr, void* ptr, hcl_oow_t size)
static void xma_free (hcl_mmgr_t* mmgr, void* ptr)
{
return hcl_xma_free (mmgr->ctx, ptr);
hcl_xma_free (mmgr->ctx, ptr);
}
hcl_heap_t* hcl_makeheap (hcl_t* hcl, hcl_oow_t size)