From effa539495f76a6cc09a16a5c43179e4953de65d Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Tue, 18 Apr 2017 20:08:29 +0000 Subject: [PATCH] Fixing bot failure caused by r300579 llvm-svn: 300582 --- lldb/source/Host/common/Socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Host/common/Socket.cpp b/lldb/source/Host/common/Socket.cpp index 2218499..0589595 100644 --- a/lldb/source/Host/common/Socket.cpp +++ b/lldb/source/Host/common/Socket.cpp @@ -101,7 +101,7 @@ std::unique_ptr Socket::Create(const SocketProtocol protocol, case ProtocolUnixAbstract: #ifdef __linux__ socket_up = - llvm::make_unique(true, child_processes_inherit); + llvm::make_unique(child_processes_inherit); #else error.SetErrorString( "Abstract domain sockets are not supported on this platform."); -- 2.7.4