diff options
Diffstat (limited to 'Userland/Libraries/LibDebug/StackFrameUtils.cpp')
-rw-r--r-- | Userland/Libraries/LibDebug/StackFrameUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibDebug/StackFrameUtils.cpp b/Userland/Libraries/LibDebug/StackFrameUtils.cpp index aac6336644..379de82ec8 100644 --- a/Userland/Libraries/LibDebug/StackFrameUtils.cpp +++ b/Userland/Libraries/LibDebug/StackFrameUtils.cpp @@ -8,7 +8,7 @@ namespace Debug::StackFrameUtils { -Optional<StackFrameInfo> get_info(const DebugSession& session, FlatPtr current_ebp) +Optional<StackFrameInfo> get_info(DebugSession const& session, FlatPtr current_ebp) { auto return_address = session.peek(reinterpret_cast<u32*>(current_ebp + sizeof(FlatPtr))); auto next_ebp = session.peek(reinterpret_cast<u32*>(current_ebp)); |