Fixing bot failure caused by r300579

llvm-svn: 300582
This commit is contained in:
Chris Bieneman 2017-04-18 20:08:29 +00:00
parent 38c3c0b034
commit effa539495
1 changed files with 1 additions and 1 deletions

View 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.");