mirror of
https://github.com/ziglang/zig.git
synced 2025-12-16 03:03:09 +00:00
gen_linux_syscalls: use default max output bytes
Apparently, 20KiB is not enough anymore.
This commit is contained in:
parent
a362d3963c
commit
11fcbe5a46
@ -262,7 +262,6 @@ pub fn main() !void {
|
|||||||
.argv = &child_args,
|
.argv = &child_args,
|
||||||
.cwd = linux_path,
|
.cwd = linux_path,
|
||||||
.cwd_dir = linux_dir,
|
.cwd_dir = linux_dir,
|
||||||
.max_output_bytes = 20 * 1024,
|
|
||||||
});
|
});
|
||||||
if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
|
if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
|
||||||
|
|
||||||
@ -324,7 +323,6 @@ pub fn main() !void {
|
|||||||
.argv = &child_args,
|
.argv = &child_args,
|
||||||
.cwd = linux_path,
|
.cwd = linux_path,
|
||||||
.cwd_dir = linux_dir,
|
.cwd_dir = linux_dir,
|
||||||
.max_output_bytes = 20 * 1024,
|
|
||||||
});
|
});
|
||||||
if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
|
if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user