wrong return type

This commit is contained in:
2026-06-10 04:57:28 +02:00
parent da572cc718
commit 8a148cf489

View File

@@ -69,7 +69,7 @@ bool MIHP_InitializeHeap(MIHP_Heap* heap, MIHP_HeapConfig config)
heap->LastSuccessfulAllocationArea = heap->FirstArea;
heap->FirstArea->Checksum = MIHP_GenerateHeapMemoryAreaChecksum(heap, heap->FirstArea);
return heap;
return true;
}
bool MIHP_IsHeapInitialized(const MIHP_Heap* heap)