From 6f28530f90ad71f92c345c7c33532133a215cf42 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:43:42 -0500 Subject: [PATCH] spelling: fragmentation Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/libutil/heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/heap.c b/src/libutil/heap.c index 1cdfc752..7a40e44c 100644 --- a/src/libutil/heap.c +++ b/src/libutil/heap.c @@ -449,7 +449,7 @@ static HeapInfo_t *find_segment(Heap* const heap, unsigned long n_units) { /* If the requested size is larger than the limit then*/ /* search backwards for an available buffer, else go */ /* forward. This will hopefully help to reduce */ - /* fragmentataion problems. */ + /* fragmentation problems. */ if (n_units >= LARGE_SIZE) { heap_info_ptr = get_previous_block(heap, heap_info_ptr); } else {