Skip to content

Commit fd6515b

Browse files
kiyoleejasonmolenda
authored andcommitted
[lldb][FreeBSD] Fix a typo in NativeProcessFreeBSD::MonitorSIGTRAP() (llvm#109643)
Apparently a typo is causing compile error, added by llvm#108504. (cherry picked from commit 85220a0)
1 parent acceb77 commit fd6515b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/Process/FreeBSD/NativeProcessFreeBSD.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ void NativeProcessFreeBSD::MonitorSIGTRAP(lldb::pid_t pid) {
324324
auto thread_info =
325325
m_threads_stepping_with_breakpoint.find(thread->GetID());
326326
if (thread_info != m_threads_stepping_with_breakpoint.end() &&
327-
threads_info->second == regctx.GetPC()) {
327+
thread_info->second == regctx.GetPC()) {
328328
thread->SetStoppedByTrace();
329329
Status brkpt_error = RemoveBreakpoint(thread_info->second);
330330
if (brkpt_error.Fail())

0 commit comments

Comments
 (0)