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 {...@@ -262,7 +262,6 @@ pub fn main() !void {
262 .argv = &child_args,262 .argv = &child_args,
263 .cwd = linux_path,263 .cwd = linux_path,
264 .cwd_dir = linux_dir,264 .cwd_dir = linux_dir,
265 .max_output_bytes = 20 * 1024,
266 });265 });
267 if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});266 if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
268267
...@@ -324,7 +323,6 @@ pub fn main() !void {...@@ -324,7 +323,6 @@ pub fn main() !void {
324 .argv = &child_args,323 .argv = &child_args,
325 .cwd = linux_path,324 .cwd = linux_path,
326 .cwd_dir = linux_dir,325 .cwd_dir = linux_dir,
327 .max_output_bytes = 20 * 1024,
328 });326 });
329 if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});327 if (child_result.stderr.len > 0) std.debug.print("{s}\n", .{child_result.stderr});
330328