gen_linux_syscalls: use default max output bytes

Apparently, 20KiB is not enough anymore.
This commit is contained in:
Stephen Gregoratto 2023-09-28 18:19:38 +10:00
parent a362d3963c
commit 11fcbe5a46

View File

@ -262,7 +262,6 @@ pub fn main() !void {
.argv = &child_args,
.cwd = linux_path,
.cwd_dir = linux_dir,
.max_output_bytes = 20 * 1024,
});
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,
.cwd = linux_path,
.cwd_dir = linux_dir,
.max_output_bytes = 20 * 1024,
});
if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});