aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2024-09-05 12:53:08 -0700
committerAdrian Prantl <aprantl@apple.com>2024-09-05 12:53:08 -0700
commit3b426a8951caa543b65f20ff265353fd79f436e5 (patch)
tree0a1a59bed281e03cdb86c7b8435b6622ca85922e /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
parent54b10555c32e9677ce15c408296f92b35cd3d29c (diff)
downloadllvm-3b426a8951caa543b65f20ff265353fd79f436e5.zip
llvm-3b426a8951caa543b65f20ff265353fd79f436e5.tar.gz
llvm-3b426a8951caa543b65f20ff265353fd79f436e5.tar.bz2
[lldb] Convert NativeProcessLinux to new Status API (NFC)
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp')
-rw-r--r--lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
index cea3fbf..5c262db 100644
--- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
+++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
@@ -1098,7 +1098,7 @@ Status NativeProcessLinux::Detach() {
Status e = Detach(thread->GetID());
// Save the error, but still attempt to detach from other threads.
if (e.Fail())
- error = e.Clone;
+ error = e.Clone();
}
m_intel_pt_collector.Clear();