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 {...@@ -463,9 +463,9 @@ pub const Frame = struct {
463 InputBufferUndersize,463 InputBufferUndersize,
464 };464 };
465465
466 /// Prepare the decoder to decode a compressed block. Loads the literals466 /// Prepare the decoder to decode a compressed block. Loads the
467 /// stream and Huffman tree from `literals` and reads the FSE tables from467 /// literals stream and Huffman tree from `literals` and reads the
468 /// `source`.468 /// FSE tables from `in`.
469 pub fn prepare(469 pub fn prepare(
470 self: *Decode,470 self: *Decode,
471 in: *BufferedReader,471 in: *BufferedReader,
lib/std/fs/Dir.zig+1-1
...@@ -2045,7 +2045,7 @@ pub fn readFileIntoArrayList(...@@ -2045,7 +2045,7 @@ pub fn readFileIntoArrayList(
2045 else => |e| return e,2045 else => |e| return e,
2046 }2046 }
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) {
2049 error.OutOfMemory => return error.OutOfMemory,2049 error.OutOfMemory => return error.OutOfMemory,
2050 error.StreamTooLong => return error.StreamTooLong,2050 error.StreamTooLong => return error.StreamTooLong,
2051 error.ReadFailed => return file_reader.err.?,2051 error.ReadFailed => return file_reader.err.?,