authorgravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2019-11-23 22:06:51+02:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2019-11-23 22:06:51+02:00
log6c64f079fa4a80949e0721e112a77a771239752d
tree03cc4f3741ab56a6b92546ebca8e0bfb19fcfaa0
parentd40f204ec05d5913046c17ae46bba3b14cdaf384
signaturelock-open Commit is signed but in an unrecognized format.

add workaround to child_process.zig


1 files changed, 3 insertions(+), 1 deletions(-)

lib/std/child_process.zig+3-1
...@@ -259,7 +259,9 @@ pub const ChildProcess = struct {...@@ -259,7 +259,9 @@ pub const ChildProcess = struct {
259 }259 }
260260
261 fn handleWaitResult(self: *ChildProcess, status: u32) void {261 fn handleWaitResult(self: *ChildProcess, status: u32) void {
262 self.term = self.cleanupAfterWait(status);262 // TODO https://github.com/ziglang/zig/issues/3190
263 var term = self.cleanupAfterWait(status);
264 self.term = term;
263 }265 }
264266
265 fn cleanupStreams(self: *ChildProcess) void {267 fn cleanupStreams(self: *ChildProcess) void {