Skip to content

Commit

Permalink
make HDF5 test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 committed Dec 17, 2024
1 parent ede8522 commit 6851517
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/decompression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function TranscodingStreams.process(codec::Bzip2Decompressor, input::Memory, out
stream.avail_in = input.size
stream.next_out = output.ptr
stream.avail_out = output.size
code = decompress!(stream)
code = _decompress!(stream)
Δin = Int(input.size - stream.avail_in)
Δout = Int(output.size - stream.avail_out)
if code == BZ_OK
Expand Down
2 changes: 1 addition & 1 deletion src/libbzip2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function decompress_end!(stream::BZStream)
end
end

function decompress!(stream::BZStream)
function _decompress!(stream::BZStream)
if WIN32
return ccall(
("BZ2_bzDecompress@4", libbzip2),
Expand Down

0 comments on commit 6851517

Please sign in to comment.