potentially got that fixed?
This commit is contained in:
parent
f433f56d3f
commit
4e4a739330
@ -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;
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user