this better not be it.

This commit is contained in:
Jonathan Turner 2023-11-29 19:21:24 -05:00
parent 44ad42edd5
commit 5069e4cefc

View File

@ -116,7 +116,8 @@
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, false);
node *holes = get_holes(umem_head);
print_list( holes, false);
} else if (strcmp(input, "RESULT") == 0) {
node *holes = get_holes( umem_head);
print_memory( umem_head, holes);