summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-03-04 02:47:22 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-08 14:09:08 +0100
commit0edae63cc006c111065bd9db2f5d9385b7511987 (patch)
tree9d216ee8f4bc3b525066954bde6f8e01535ac312
parente72fb8f594484db58714eadbf5d10b735e3f5851 (diff)
downloadserenity-0edae63cc006c111065bd9db2f5d9385b7511987.zip
Kernel: Fix inconsistent inclusion style
This also makes it easier to automatically parse the dependency tree. Thankfully, this is the only place where a change was necessary.
-rw-r--r--Kernel/ACPI/ACPIStaticParser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/ACPI/ACPIStaticParser.h b/Kernel/ACPI/ACPIStaticParser.h
index 5b024cd119..0886c1aeb3 100644
--- a/Kernel/ACPI/ACPIStaticParser.h
+++ b/Kernel/ACPI/ACPIStaticParser.h
@@ -26,7 +26,7 @@
#pragma once
-#include <ACPI/ACPIParser.h>
+#include <Kernel/ACPI/ACPIParser.h>
#include <AK/OwnPtr.h>
namespace Kernel {