From 9985f1fdf34a62a2bbf727d1bcb37c6b526a0e74 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 10:58:12 -0500 Subject: [PATCH] spelling: next Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/libutil/heap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libutil/heap.c b/src/libutil/heap.c index 0522b2ea..6667e672 100644 --- a/src/libutil/heap.c +++ b/src/libutil/heap.c @@ -369,11 +369,11 @@ void heap_free(Heap* const heap, void *ptr, uintptr_t client_pc) { heap_info_ptr->Size += next_block->Size; /* Since we merged the next segment, we have to update*/ - /* the next next segment's PrevSize field. */ + /* the next segment's PrevSize field. */ HeapInfo_t *next_next_block = get_next_block(heap, heap_info_ptr); /* If we are pointing at the end of the heap, then use*/ - /* the begin as the next next segment. */ + /* the begin as the next segment. */ if(next_next_block == heap->end) { heap->begin->PrevSize = heap_info_ptr->Size; }