Skip to content

Commit

Permalink
[lldb][FreeBSD] Fix a typo in NativeProcessFreeBSD::MonitorSIGTRAP() (#…
Browse files Browse the repository at this point in the history
…109643)

Apparently a typo is causing compile error, added by #108504.
  • Loading branch information
kiyolee authored Sep 23, 2024
1 parent cff753f commit 85220a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ void NativeProcessFreeBSD::MonitorSIGTRAP(lldb::pid_t pid) {
auto thread_info =
m_threads_stepping_with_breakpoint.find(thread->GetID());
if (thread_info != m_threads_stepping_with_breakpoint.end() &&
threads_info->second == regctx.GetPC()) {
thread_info->second == regctx.GetPC()) {
thread->SetStoppedByTrace();
Status brkpt_error = RemoveBreakpoint(thread_info->second);
if (brkpt_error.Fail())
Expand Down

0 comments on commit 85220a0

Please sign in to comment.