Skip to content

Commit a28e7ce

Browse files
committed
Revert "[lldb] SetErrorStringWithFormatv -> FromErrorStringWithFormatv (NFC)"
This reverts commit fae7d68.
1 parent 4f32077 commit a28e7ce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,8 @@ Status ProcessKDP::DoResume(RunDirection direction) {
407407
Log *log = GetLog(KDPLog::Process);
408408

409409
if (direction == RunDirection::eRunReverse) {
410-
error.FromErrorStringWithFormatv(
411-
"error: {0} does not support reverse execution of processes",
412-
GetPluginName());
410+
error.SetErrorStringWithFormatv(
411+
"error: {0} does not support reverse execution of processes", GetPluginName());
413412
return error;
414413
}
415414

0 commit comments

Comments
 (0)