1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

LibDebug: Prefer File::read_until_eof over DeprecatedFile

This commit is contained in:
Ben Wiederhake 2023-05-13 19:01:17 +02:00 committed by Jelle Raaijmakers
parent f9a24eb7eb
commit 9474e0cd94
2 changed files with 18 additions and 10 deletions

View file

@ -137,7 +137,7 @@ private:
// x86 breakpoint instruction "int3"
static constexpr u8 BREAKPOINT_INSTRUCTION = 0xcc;
void update_loaded_libs();
ErrorOr<void> update_loaded_libs();
int m_debuggee_pid { -1 };
DeprecatedString m_source_root;