removed 'return' from where it's not needed

This commit is contained in:
hyunghwan.chung 2021-02-27 10:17:30 +00:00
parent b5398a1a89
commit 706b425999

View File

@ -41,7 +41,7 @@ static void* xma_realloc (moo_mmgr_t* mmgr, void* ptr, moo_oow_t size)
static void xma_free (moo_mmgr_t* mmgr, void* ptr)
{
return moo_xma_free (mmgr->ctx, ptr);
moo_xma_free (mmgr->ctx, ptr);
}
moo_heap_t* moo_makeheap (moo_t* moo, moo_oow_t size)