authorgravatar for dev@sgregoratto.meStephen Gregoratto <dev@sgregoratto.me> 2023-09-28 18:19:38+10:00
committergravatar for dev@sgregoratto.meStephen Gregoratto <dev@sgregoratto.me> 2023-09-28 18:58:05+10:00
log11fcbe5a4688e4217ecbd8bd19ee23a4e5c1d709
treeb0226cc61cba92f9ff228d228a696b8f293e7363
parenta362d3963c879af47661f54b0a698729e142619f

gen_linux_syscalls: use default max output bytes

Apparently, 20KiB is not enough anymore.

1 files changed, 0 insertions(+), 2 deletions(-)

tools/generate_linux_syscalls.zig-2
......@@ -262,7 +262,6 @@ pub fn main() !void {
262262 .argv = &child_args,
263263 .cwd = linux_path,
264264 .cwd_dir = linux_dir,
265 .max_output_bytes = 20 * 1024,
266265 });
267266 if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
268267
......@@ -324,7 +323,6 @@ pub fn main() !void {
324323 .argv = &child_args,
325324 .cwd = linux_path,
326325 .cwd_dir = linux_dir,
327 .max_output_bytes = 20 * 1024,
328326 });
329327 if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
330328