| author | |
| committer | |
| log | 65991092f7d7460390529a012cb7e7893799fc34 |
| tree | 8f9ba734750e13a8d7ccdf7e272f1edd35b7a393 |
| parent | 1d777e99588be047ec4d7650f048b043d6e52da0 |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/child_process.zig+2-2| ... | ... | @@ -105,8 +105,8 @@ pub const ChildProcess = struct { |
| 105 | 105 | .term = null, |
| 106 | 106 | .env_map = null, |
| 107 | 107 | .cwd = null, |
| 108 | .uid = if (builtin.os.tag == .windows) {} else null, | |
| 109 | .gid = if (builtin.os.tag == .windows) {} else null, | |
| 108 | .uid = if (builtin.os.tag == .windows or builtin.os.tag == .wasi) {} else null, | |
| 109 | .gid = if (builtin.os.tag == .windows or builtin.os.tag == .wasi) {} else null, | |
| 110 | 110 | .stdin = null, |
| 111 | 111 | .stdout = null, |
| 112 | 112 | .stderr = null, |