We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a2e470 commit 9b22850Copy full SHA for 9b22850
src/subprocess-win32.cc
@@ -41,7 +41,7 @@ Subprocess::~Subprocess() {
41
HANDLE Subprocess::SetupPipe(HANDLE ioport) {
42
char pipe_name[100];
43
snprintf(pipe_name, sizeof(pipe_name),
44
- "\\\\.\\pipe\\ninja_pid%lu_sp%p", GetCurrentProcessId(), this);
+ "\\\\.\\pipe\\LOCAL\\ninja_pid%lu_sp%p", GetCurrentProcessId(), this);
45
46
pipe_ = ::CreateNamedPipeA(pipe_name,
47
PIPE_ACCESS_INBOUND | FILE_FLAG_OVERLAPPED,
0 commit comments