[NFC] Fix typo in the "kind" description for the software single-step breakpoint

llvm-svn: 372763
This commit is contained in:
Tatyana Krasnukha 2019-09-24 14:24:52 +00:00
parent 1a219aa8df
commit 5a4355324e
1 changed files with 1 additions and 1 deletions

View File

@ -977,7 +977,7 @@ Status ProcessFreeBSD::SetSoftwareSingleStepBreakpoint(lldb::tid_t tid,
Breakpoint *const sw_step_break =
m_process->GetTarget().CreateBreakpoint(addr, true, false).get();
sw_step_break->SetCallback(SingleStepBreakpointHit, this, true);
sw_step_break->SetBreakpointKind("software-signle-step");
sw_step_break->SetBreakpointKind("software-single-step");
LLDB_LOGF(log, "ProcessFreeBSD::%s addr = 0x%" PRIx64 " -- SUCCESS",
__FUNCTION__, addr);