diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-22 14:51:04 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-23 00:02:09 +0200 |
commit | bcd2025311b97d45aeb23960e17fcae2bc5b7f2e (patch) | |
tree | facb4e412cdfcc5a9f5177c9f3cd0cd1e27a2f67 /Kernel/Syscalls/profiling.cpp | |
parent | a930877f31fb117ce4b38d4782dd288093700d8a (diff) | |
download | serenity-bcd2025311b97d45aeb23960e17fcae2bc5b7f2e.zip |
Everywhere: Core dump => Coredump
We all know what a coredump is, and it feels more natural to refer to
it as a coredump (most code already does), so let's be consistent.
Diffstat (limited to 'Kernel/Syscalls/profiling.cpp')
-rw-r--r-- | Kernel/Syscalls/profiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/profiling.cpp b/Kernel/Syscalls/profiling.cpp index 3580ba8910..45153f68fd 100644 --- a/Kernel/Syscalls/profiling.cpp +++ b/Kernel/Syscalls/profiling.cpp @@ -4,7 +4,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <Kernel/CoreDump.h> +#include <Kernel/Coredump.h> #include <Kernel/FileSystem/VirtualFileSystem.h> #include <Kernel/PerformanceManager.h> #include <Kernel/Process.h> |