diff options
Diffstat (limited to 'Userland/DevTools/Profiler/Process.cpp')
-rw-r--r-- | Userland/DevTools/Profiler/Process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/DevTools/Profiler/Process.cpp b/Userland/DevTools/Profiler/Process.cpp index a2c592e783..2fdcb376ea 100644 --- a/Userland/DevTools/Profiler/Process.cpp +++ b/Userland/DevTools/Profiler/Process.cpp @@ -5,7 +5,7 @@ */ #include "Process.h" -#include <LibCore/File.h> +#include <LibCore/DeprecatedFile.h> namespace Profiler { @@ -93,7 +93,7 @@ void LibraryMetadata::handle_mmap(FlatPtr base, size_t size, DeprecatedString co DeprecatedString full_path; if (path_string.starts_with('/')) full_path = path_string; - else if (Core::File::looks_like_shared_library(path_string)) + else if (Core::DeprecatedFile::looks_like_shared_library(path_string)) full_path = DeprecatedString::formatted("/usr/lib/{}", path); else full_path = path_string; |