Skip to content

Commit 9b22850

Browse files
authoredNov 18, 2023
try local pipe
1 parent 2a2e470 commit 9b22850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/subprocess-win32.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Subprocess::~Subprocess() {
4141
HANDLE Subprocess::SetupPipe(HANDLE ioport) {
4242
char pipe_name[100];
4343
snprintf(pipe_name, sizeof(pipe_name),
44-
"\\\\.\\pipe\\ninja_pid%lu_sp%p", GetCurrentProcessId(), this);
44+
"\\\\.\\pipe\\LOCAL\\ninja_pid%lu_sp%p", GetCurrentProcessId(), this);
4545

4646
pipe_ = ::CreateNamedPipeA(pipe_name,
4747
PIPE_ACCESS_INBOUND | FILE_FLAG_OVERLAPPED,

0 commit comments

Comments
 (0)
Please sign in to comment.