From 44ad42edd5554ee507664497f70217545ce61ce8 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Wed, 29 Nov 2023 19:20:35 -0500 Subject: [PATCH] this better not be it. --- 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 76f39d4..39df543 100644 --- a/Part3/09_memory/kernel/kernel.c +++ b/Part3/09_memory/kernel/kernel.c @@ -116,7 +116,7 @@ kprint(" These are hard coded and are just examples, modify as you see fit.\n"); kprint(" for example - TEST was just added so that I could test the strlen commands.\n"); } else if (strcmp(input, "HOLES") == 0) { - print_holes(umem_head); + print_holes(umem_head, false); } else if (strcmp(input, "RESULT") == 0) { node *holes = get_holes( umem_head); print_memory( umem_head, holes);