From 8c23f1863a12a4d61cb4624f23170e910948d26d Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Wed, 29 Nov 2023 21:55:55 -0500 Subject: [PATCH] please ;-; --- Part3/09_memory/kernel/kernel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Part3/09_memory/kernel/kernel.c b/Part3/09_memory/kernel/kernel.c index bc39b7c..8286976 100644 --- a/Part3/09_memory/kernel/kernel.c +++ b/Part3/09_memory/kernel/kernel.c @@ -237,7 +237,7 @@ node* get_holes(node* umem_head) { void begin_output_example() { static node* umem_head = NULL; // static persistent head variable for contiguous block allocations static node* holes_head = NULL; - holes_head = get_holes(emum_head); + holes_head = get_holes(umem_head); kprint("Jonathan Turner - S02\n"); kprint("Current Allocation: \n");