diff options
author | Adrian Prantl <aprantl@apple.com> | 2024-09-05 12:53:08 -0700 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2024-09-05 12:53:08 -0700 |
commit | 3b426a8951caa543b65f20ff265353fd79f436e5 (patch) | |
tree | 0a1a59bed281e03cdb86c7b8435b6622ca85922e /lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | |
parent | 54b10555c32e9677ce15c408296f92b35cd3d29c (diff) | |
download | llvm-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.cpp | 2 |
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(); |