diff options
| author | Stephen Gregoratto <dev@sgregoratto.me> | 2023-09-28 18:19:38 +1000 |
|---|---|---|
| committer | Stephen Gregoratto <dev@sgregoratto.me> | 2023-09-28 18:58:05 +1000 |
| commit | 11fcbe5a4688e4217ecbd8bd19ee23a4e5c1d709 (patch) | |
| tree | b0226cc61cba92f9ff228d228a696b8f293e7363 /tools | |
| parent | a362d3963c879af47661f54b0a698729e142619f (diff) | |
| download | zig-11fcbe5a4688e4217ecbd8bd19ee23a4e5c1d709.tar.gz zig-11fcbe5a4688e4217ecbd8bd19ee23a4e5c1d709.zip | |
gen_linux_syscalls: use default max output bytes
Apparently, 20KiB is not enough anymore.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/generate_linux_syscalls.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/generate_linux_syscalls.zig b/tools/generate_linux_syscalls.zig index 32e287b434..92fc2ac1df 100644 --- 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}); |
