Skip to content

Commit 127651b

Browse files
author
Jan Philipp Hafer
committed
fix windows compile error.
1 parent f9d1420 commit 127651b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/child_process.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ pub inline fn portablePipe() !PortPipeT {
11231123
.bInheritHandle = windows.FALSE,
11241124
.lpSecurityDescriptor = null,
11251125
};
1126-
try windowsMakeAsyncPipe(&pipe_new[os.pipe_rd], &pipe_new[os.pipe_wr], &saAttr);
1126+
try windowsMakeAsyncPipe(&pipe_new[pipe_rd], &pipe_new[pipe_wr], &saAttr);
11271127
} else {
11281128
pipe_new = try os.pipe2(@as(u32, os.O.CLOEXEC));
11291129
}

0 commit comments

Comments
 (0)