diff options
author | Andrew Kaster <andrewdkaster@gmail.com> | 2020-04-11 12:24:07 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-11 22:41:05 +0200 |
commit | 21b5909dc6c912809f0ff2fd4798f0d613b36c14 (patch) | |
tree | 6de075abe62c33671da24790120d3f1232060e82 /Kernel/Profiling.cpp | |
parent | 6b0f47683c78b0b9482efb7c95e42bb9a2bcaf7f (diff) | |
download | serenity-21b5909dc6c912809f0ff2fd4798f0d613b36c14.zip |
LibELF: Move ELF classes into namespace ELF
This is for consistency with other namespace changes that were made
a while back to the other libraries :)
Diffstat (limited to 'Kernel/Profiling.cpp')
-rw-r--r-- | Kernel/Profiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Profiling.cpp b/Kernel/Profiling.cpp index dba5cb8710..f7e247f529 100644 --- a/Kernel/Profiling.cpp +++ b/Kernel/Profiling.cpp @@ -31,7 +31,7 @@ #include <Kernel/KSyms.h> #include <Kernel/Process.h> #include <Kernel/Profiling.h> -#include <LibELF/ELFLoader.h> +#include <LibELF/Loader.h> namespace Kernel { |