diff options
author | Augusto Noronha <anoronha@apple.com> | 2024-10-10 15:01:13 -0700 |
---|---|---|
committer | Augusto Noronha <anoronha@apple.com> | 2024-10-10 15:05:58 -0700 |
commit | f02252e1fd2965db007cf7be74c448b7a119c321 (patch) | |
tree | 6f9731ade2aa6523f87ef7aa1fd421a7c2465d12 /lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | |
parent | 48545a955c4e61f42833af7417032d816482bdfc (diff) | |
download | llvm-f02252e1fd2965db007cf7be74c448b7a119c321.zip llvm-f02252e1fd2965db007cf7be74c448b7a119c321.tar.gz llvm-f02252e1fd2965db007cf7be74c448b7a119c321.tar.bz2 |
Revert "[lldb] SetErrorStringWithFormatv -> FromErrorStringWithFormatv (NFC)"
This reverts commit b77fdf5799be6b29869f2f7969851709e03938ba.
Diffstat (limited to 'lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp index 367fce4..116c43343 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -407,9 +407,8 @@ Status ProcessKDP::DoResume(RunDirection direction) { Log *log = GetLog(KDPLog::Process); if (direction == RunDirection::eRunReverse) { - error.FromErrorStringWithFormatv( - "error: {0} does not support reverse execution of processes", - GetPluginName()); + error.SetErrorStringWithFormatv( + "error: {0} does not support reverse execution of processes", GetPluginName()); return error; } |