Skip to content

Commit 7597d60

Browse files
dweillerandrewrk
authored andcommitted
std.compress.zstd: fix decompressStreamOptions
1 parent 388bfe0 commit 7597d60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/compress/zstandard.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ pub fn decompressStreamOptions(
238238
allocator: Allocator,
239239
reader: anytype,
240240
comptime options: DecompressStreamOptions,
241-
) DecompressStream(@TypeOf(reader, options)) {
241+
) DecompressStream(@TypeOf(reader), options) {
242242
return DecompressStream(@TypeOf(reader), options).init(allocator, reader);
243243
}
244244

0 commit comments

Comments
 (0)