Fixing bot failure caused by r300579
authorChris Bieneman <beanz@apple.com>
Tue, 18 Apr 2017 20:08:29 +0000 (20:08 +0000)
committerChris Bieneman <beanz@apple.com>
Tue, 18 Apr 2017 20:08:29 +0000 (20:08 +0000)
llvm-svn: 300582

lldb/source/Host/common/Socket.cpp

index 2218499..0589595 100644 (file)
@@ -101,7 +101,7 @@ std::unique_ptr<Socket> Socket::Create(const SocketProtocol protocol,
   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.");