update Zig nightly

This commit is contained in:
Mitchell Hashimoto
2022-08-02 09:27:05 -07:00
parent 84af11e1eb
commit 1fbfc8a664
2 changed files with 4 additions and 4 deletions

View File

@@ -198,7 +198,7 @@ pub fn create(alloc: Allocator, loop: libuv.Loop, config: *const Config) !*Windo
cmd.stdout = cmd.stdin;
cmd.stderr = cmd.stdin;
try cmd.start(alloc);
log.debug("started subcommand path={s} pid={}", .{ path, cmd.pid });
log.debug("started subcommand path={s} pid={?}", .{ path, cmd.pid });
// Read data
var stream = try libuv.Tty.init(alloc, loop, pty.master);