[Lldb-commits] [lldb] r300582 - Fixing bot failure caused by r300579
Chris Bieneman via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 18 13:08:29 PDT 2017
Author: cbieneman
Date: Tue Apr 18 15:08:29 2017
New Revision: 300582
URL: http://llvm.org/viewvc/llvm-project?rev=300582&view=rev
Log:
Fixing bot failure caused by r300579
Modified:
lldb/trunk/source/Host/common/Socket.cpp
Modified: lldb/trunk/source/Host/common/Socket.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/Socket.cpp?rev=300582&r1=300581&r2=300582&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/Socket.cpp (original)
+++ lldb/trunk/source/Host/common/Socket.cpp Tue Apr 18 15:08:29 2017
@@ -101,7 +101,7 @@ std::unique_ptr<Socket> Socket::Create(c
case ProtocolUnixAbstract:
#ifdef __linux__
socket_up =
- llvm::make_unique<AbstractSocket>(true, child_processes_inherit);
+ llvm::make_unique<AbstractSocket>(child_processes_inherit);
#else
error.SetErrorString(
"Abstract domain sockets are not supported on this platform.");
More information about the lldb-commits
mailing list