authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-05-02 00:06:25-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-01 16:35:28-07:00
loge326d7e8ecd2c999faf0581e8e9c1517dcb5ab52
tree43408db31122d7aa756ccbb395d4016d84b1ae09
parenta091ccb217b7374efb2630d7f063db6a83fbac33

fix build runner compilation


2 files changed, 4 insertions(+), 4 deletions(-)

lib/std/compress/zstd/Decompress.zig+3-3
......@@ -463,9 +463,9 @@ pub const Frame = struct {
463463 InputBufferUndersize,
464464 };
465465
466 /// Prepare the decoder to decode a compressed block. Loads the literals
467 /// stream and Huffman tree from `literals` and reads the FSE tables from
468 /// `source`.
466 /// Prepare the decoder to decode a compressed block. Loads the
467 /// literals stream and Huffman tree from `literals` and reads the
468 /// FSE tables from `in`.
469469 pub fn prepare(
470470 self: *Decode,
471471 in: *BufferedReader,
lib/std/fs/Dir.zig+1-1
......@@ -2045,7 +2045,7 @@ pub fn readFileIntoArrayList(
20452045 else => |e| return e,
20462046 }
20472047
2048 file_reader.interface().readRemainingArrayList(gpa, alignment, list, limit) catch |err| switch (err) {
2048 file_reader.interface().readRemainingArrayList(gpa, alignment, list, limit, 128) catch |err| switch (err) {
20492049 error.OutOfMemory => return error.OutOfMemory,
20502050 error.StreamTooLong => return error.StreamTooLong,
20512051 error.ReadFailed => return file_reader.err.?,