From 8a148cf489ccd02c3228bc8511e4ebd56977f477 Mon Sep 17 00:00:00 2001 From: ToyB-Chan Date: Wed, 10 Jun 2026 04:57:28 +0200 Subject: [PATCH] wrong return type --- minimal_heap_implementation.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimal_heap_implementation.inl b/minimal_heap_implementation.inl index 71bf711..14897cc 100644 --- a/minimal_heap_implementation.inl +++ b/minimal_heap_implementation.inl @@ -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)