From e85a68e1536a0f6505300e1cb79f06b9743b00f7 Mon Sep 17 00:00:00 2001 From: Miguel Date: Sun, 9 Sep 2018 11:49:30 +0200 Subject: fixing implicit func declarations! --- kernel/acpi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'kernel/acpi.c') diff --git a/kernel/acpi.c b/kernel/acpi.c index 5192c37..8b139bf 100644 --- a/kernel/acpi.c +++ b/kernel/acpi.c @@ -1,6 +1,5 @@ #include "kernel.h" #include -#include #include "smp.h" #include "lib/string/string.h" @@ -170,7 +169,7 @@ bool acpi_find(smp_processors *procdata) search++; - if(search==0xa0000)search=0xe0000; + if((uint32_t)search==0xa0000)search=0xe0000; } return false; -- cgit v1.2.3