std.compress.zstd: fix decompressStreamOptions

This commit is contained in:
dweiller 2024-02-16 19:29:49 +11:00 committed by Andrew Kelley
parent 63fa151f1c
commit 73f6d3afb5

View File

@ -238,7 +238,7 @@ pub fn decompressStreamOptions(
allocator: Allocator,
reader: anytype,
comptime options: DecompressStreamOptions,
) DecompressStream(@TypeOf(reader, options)) {
) DecompressStream(@TypeOf(reader), options) {
return DecompressStream(@TypeOf(reader), options).init(allocator, reader);
}