diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2021-07-11 12:02:15 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-11 21:37:38 +0200 |
commit | 425195e93fa1cc8212ebdc9a7318e07c11003649 (patch) | |
tree | be01358020d9fe059d182d103396ccd4ecbbd7b4 /Kernel/ProcessGroup.cpp | |
parent | 6f408e7f0db2f8f46df636133bac35bcb7efe3ee (diff) | |
download | serenity-425195e93fa1cc8212ebdc9a7318e07c11003649.zip |
Kernel: Standardize the header include style to 'include <Kernel/...>'
This is the overwhelming standard in the project, but there were some
cases in the kernel which were not following it, lets fix those cases!
Diffstat (limited to 'Kernel/ProcessGroup.cpp')
-rw-r--r-- | Kernel/ProcessGroup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/ProcessGroup.cpp b/Kernel/ProcessGroup.cpp index 07472cd471..443363e94d 100644 --- a/Kernel/ProcessGroup.cpp +++ b/Kernel/ProcessGroup.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include "ProcessGroup.h" +#include <Kernel/ProcessGroup.h> namespace Kernel { |