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

6
flake.lock generated
View File

@ -109,11 +109,11 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1658451178, "lastModified": 1659315496,
"narHash": "sha256-odh/ElPoE8OVs4UFnECTHmXcfWZaVi1jn7PkkfcGa9o=", "narHash": "sha256-d2UFb31bF2hJrJ4Rp0JCDK1hCuw0Em08OR1cbLbmkNA=",
"owner": "roarkanize", "owner": "roarkanize",
"repo": "zig-overlay", "repo": "zig-overlay",
"rev": "04c8eb6782e1b57409771b26c09367a98a78e720", "rev": "b991fe45280c45695c81b0cc6824e3c532a2ec56",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -198,7 +198,7 @@ pub fn create(alloc: Allocator, loop: libuv.Loop, config: *const Config) !*Windo
cmd.stdout = cmd.stdin; cmd.stdout = cmd.stdin;
cmd.stderr = cmd.stdin; cmd.stderr = cmd.stdin;
try cmd.start(alloc); 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 // Read data
var stream = try libuv.Tty.init(alloc, loop, pty.master); var stream = try libuv.Tty.init(alloc, loop, pty.master);