aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/API
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2025-04-29 14:00:14 +0000
committerDavid Spickett <david.spickett@linaro.org>2025-04-29 14:01:01 +0000
commit65b0d21eb490aaa0c742739ce95b1acc654be22b (patch)
tree92749ed717e24b3e37f16aab931464a6d5b5748e /lldb/source/API
parent2e713af20e58a1ca005fcae9165fda3007c0e400 (diff)
downloadllvm-65b0d21eb490aaa0c742739ce95b1acc654be22b.zip
llvm-65b0d21eb490aaa0c742739ce95b1acc654be22b.tar.gz
llvm-65b0d21eb490aaa0c742739ce95b1acc654be22b.tar.bz2
[lldb] Remove "error:" prefix from reverse execute error messages
Errors will get "error:" prefixes automatically so this is not needed.
Diffstat (limited to 'lldb/source/API')
-rw-r--r--lldb/source/API/SBProcess.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBProcess.cpp b/lldb/source/API/SBProcess.cpp
index ba77b2b..4de5929 100644
--- a/lldb/source/API/SBProcess.cpp
+++ b/lldb/source/API/SBProcess.cpp
@@ -590,7 +590,7 @@ SBError SBProcess::ContinueInDirection(RunDirection direction) {
if (direction == RunDirection::eRunReverse &&
!process_sp->SupportsReverseDirection())
return Status::FromErrorStringWithFormatv(
- "error: {0} does not support reverse execution of processes",
+ "{0} does not support reverse execution of processes",
GetPluginName());
process_sp->SetBaseDirection(direction);
}