We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9d1420 commit 127651bCopy full SHA for 127651b
lib/std/child_process.zig
@@ -1123,7 +1123,7 @@ pub inline fn portablePipe() !PortPipeT {
1123
.bInheritHandle = windows.FALSE,
1124
.lpSecurityDescriptor = null,
1125
};
1126
- try windowsMakeAsyncPipe(&pipe_new[os.pipe_rd], &pipe_new[os.pipe_wr], &saAttr);
+ try windowsMakeAsyncPipe(&pipe_new[pipe_rd], &pipe_new[pipe_wr], &saAttr);
1127
} else {
1128
pipe_new = try os.pipe2(@as(u32, os.O.CLOEXEC));
1129
}
0 commit comments