fix build runner compilation

This commit is contained in:
Andrew Kelley 2025-05-02 00:06:25 -07:00
parent a091ccb217
commit e326d7e8ec
2 changed files with 4 additions and 4 deletions

View File

@ -463,9 +463,9 @@ pub const Frame = struct {
InputBufferUndersize,
};
/// Prepare the decoder to decode a compressed block. Loads the literals
/// stream and Huffman tree from `literals` and reads the FSE tables from
/// `source`.
/// Prepare the decoder to decode a compressed block. Loads the
/// literals stream and Huffman tree from `literals` and reads the
/// FSE tables from `in`.
pub fn prepare(
self: *Decode,
in: *BufferedReader,

View File

@ -2045,7 +2045,7 @@ pub fn readFileIntoArrayList(
else => |e| return e,
}
file_reader.interface().readRemainingArrayList(gpa, alignment, list, limit) catch |err| switch (err) {
file_reader.interface().readRemainingArrayList(gpa, alignment, list, limit, 128) catch |err| switch (err) {
error.OutOfMemory => return error.OutOfMemory,
error.StreamTooLong => return error.StreamTooLong,
error.ReadFailed => return file_reader.err.?,