From 8e338784835f78c9dc43f9e8f6ae9de1a9ab3bb3 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Wed, 29 Nov 2023 17:53:40 -0500 Subject: [PATCH] added holes print line --- 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 ff5f48a..1c17e8e 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); } else { kprint("You said: "); kprint(input);