diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-03-04 02:47:22 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-08 14:09:08 +0100 |
commit | 0edae63cc006c111065bd9db2f5d9385b7511987 (patch) | |
tree | 9d216ee8f4bc3b525066954bde6f8e01535ac312 | |
parent | e72fb8f594484db58714eadbf5d10b735e3f5851 (diff) | |
download | serenity-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.h | 2 |
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 { |