potentially got that fixed?

This commit is contained in:
Jonathan Turner 2023-11-29 18:40:47 -05:00
parent f433f56d3f
commit 4e4a739330
2 changed files with 2 additions and 2 deletions

View File

@ -157,7 +157,7 @@
node* print_holes(node* umem_head) { node* print_holes(node* umem_head) {
if (umem_head == NULL) { if (umem_head == NULL) {
kprint("Holes list is Empty"); kprint("Holes list is Empty");
return; return NULL;
} }
u32 hole_ids = 0; u32 hole_ids = 0;
node *hole = NULL; node *hole = NULL;

View File

@ -10,7 +10,7 @@
#include "../libc/linked.h" #include "../libc/linked.h"
void user_input(char *input); void user_input(char *input);
void print_holes(node *enum_head); node* print_holes(node *enum_head);
int digit_len(unsigned digit); int digit_len(unsigned digit);
int digit_conver(const char *str); int digit_conver(const char *str);