mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
fix error set
This commit is contained in:
parent
e0d06b40e3
commit
b996675dcf
1 changed files with 1 additions and 4 deletions
|
|
@ -125,10 +125,7 @@ pub fn wait(child: *Child, io: Io) WaitError!Term {
|
|||
return io.vtable.childWait(io.userdata, child);
|
||||
}
|
||||
|
||||
pub const CollectOutputError = error{
|
||||
Timeout,
|
||||
StreamTooLong,
|
||||
} || Allocator.Error || Io.File.Reader.Error;
|
||||
pub const CollectOutputError = error{StreamTooLong} || Allocator.Error || Io.File.Reader.Error;
|
||||
|
||||
pub const CollectOutputOptions = struct {
|
||||
stdout: *std.ArrayList(u8),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue