Skip to content

Commit b77fdf5

Browse files
committed
[lldb] SetErrorStringWithFormatv -> FromErrorStringWithFormatv (NFC)
1 parent 86f78c0 commit b77fdf5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

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

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

0 commit comments

Comments
 (0)