diff options
author | Zachary Turner <zturner@google.com> | 2017-05-12 05:48:54 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-12 05:48:54 +0000 |
commit | 41c99364602a6965c30be674d75451ad87658d8c (patch) | |
tree | 6443229b7a5db5c2938e2cf0b6961c8d04a55748 | |
parent | 1cc75047749464adb31d6b6a8960a08a8fd6e418 (diff) | |
download | bcm5719-llvm-41c99364602a6965c30be674d75451ad87658d8c.tar.gz bcm5719-llvm-41c99364602a6965c30be674d75451ad87658d8c.zip |
Fix Linux Buildbot.
llvm-svn: 302874
-rw-r--r-- | lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp b/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp index f0059f15cc1..251cb4b2f10 100644 --- a/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp +++ b/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp @@ -66,7 +66,7 @@ bool WorkaroundNeeded() { Log *log = ProcessPOSIXLog::GetLogIfAllCategoriesSet(POSIX_LOG_THREAD); ::pid_t child_pid = fork(); if (child_pid == -1) { - LLDB_LOG(log, "failed to fork(): {0}", Error(errno, eErrorTypePOSIX)); + LLDB_LOG(log, "failed to fork(): {0}", Status(errno, eErrorTypePOSIX)); return false; } if (child_pid == 0) |