diff options
author | Raphael Isemann <teemperor@gmail.com> | 2020-04-07 16:11:16 +0200 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2020-04-07 16:11:32 +0200 |
commit | 95054aeb07061dbfd6575c10673b9563430de64a (patch) | |
tree | 8335d4b811c0756ecd049b253ce4e8828f9a3b71 /lldb/source/Commands/CommandObjectWatchpoint.cpp | |
parent | 94317878d8267de23a1a23dfa3d92f9143c433ca (diff) | |
download | llvm-95054aeb07061dbfd6575c10673b9563430de64a.zip llvm-95054aeb07061dbfd6575c10673b9563430de64a.tar.gz llvm-95054aeb07061dbfd6575c10673b9563430de64a.tar.bz2 |
[lldb][NFC] Fix typo in 'watchpoint delete' error message
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index 63baae8..ce46629 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -41,7 +41,7 @@ static bool CheckTargetForWatchpointOperations(Target *target, bool process_is_valid = target->GetProcessSP() && target->GetProcessSP()->IsAlive(); if (!process_is_valid) { - result.AppendError("Thre's no process or it is not alive."); + result.AppendError("There's no process or it is not alive."); result.SetStatus(eReturnStatusFailed); return false; } |