From 87fc8162d54e33c46e4e1efb804ae013f40bf30d Mon Sep 17 00:00:00 2001 From: Finlay Morrison Date: Thu, 14 Jul 2022 16:49:16 +0100 Subject: [PATCH] fixed error in comment --- src/Heap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Heap.h b/src/Heap.h index f89a760..cd87c17 100644 --- a/src/Heap.h +++ b/src/Heap.h @@ -50,7 +50,7 @@ /** * redefines free to use "myfree" so that heap allocation can be tracked - * @param x the size of the item to be freed + * @param x the pointer to the item to be freed */ #define free(x) myfree(__FILE__, __LINE__, x) -- GitLab