mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +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
1 changed files with 0 additions and 2 deletions
|
|
@ -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…
Add table
Reference in a new issue