please ;-;

This commit is contained in:
Jonathan Turner 2023-11-29 21:57:21 -05:00
parent 8c23f1863a
commit 2ffb52ae02

View File

@ -213,7 +213,8 @@ void print_memory(node *umem_head, node *hole_head) {
node* get_holes(node* umem_head) { node* get_holes(node* umem_head) {
if (umem_head == NULL) { if (umem_head == NULL) {
node *hole = add_node(hole, 0x10000, 0x3FFFF, true, 0); node *hole = NULL;
hole = add_node(hole, 0x10000, 0x3FFFF, true, 0);
return hole; return hole;
} }
u32 hole_ids = 0; u32 hole_ids = 0;