zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 11fcbe5a4688e4217ecbd8bd19ee23a4e5c1d709 (tree)
parent a362d3963c879af47661f54b0a698729e142619f
Author: Stephen Gregoratto <dev@sgregoratto.me>
Date:   Thu, 28 Sep 2023 18:19:38 +1000

gen_linux_syscalls: use default max output bytes

Apparently, 20KiB is not enough anymore.

Diffstat:
Mtools/generate_linux_syscalls.zig | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/tools/generate_linux_syscalls.zig b/tools/generate_linux_syscalls.zig @@ -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});