diff options
Diffstat (limited to 'Userland/Applications/Debugger/main.cpp')
-rw-r--r-- | Userland/Applications/Debugger/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Debugger/main.cpp b/Userland/Applications/Debugger/main.cpp index 145f71a995..aab45b43e8 100644 --- a/Userland/Applications/Debugger/main.cpp +++ b/Userland/Applications/Debugger/main.cpp @@ -227,7 +227,7 @@ int main(int argc, char** argv) return Debug::DebugSession::DebugDecision::Detach; } - ASSERT(optional_regs.has_value()); + VERIFY(optional_regs.has_value()); const PtraceRegisters& regs = optional_regs.value(); auto symbol_at_ip = g_debug_session->symbolicate(regs.eip); |