File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -925,7 +925,8 @@ decompressStreamST format params =
925
925
if S. length chunk > 1
926
926
then do
927
927
-- have to handle the remaining data in this chunk
928
- (DecompressInputRequired next, zstate') <- runStreamST resume zstate
928
+ x <- runStreamST resume zstate
929
+ let (DecompressInputRequired next, zstate') = x
929
930
(strm', zstate'') <- runStreamST (next (S. tail chunk)) zstate'
930
931
go strm' zstate'' False
931
932
else do
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ library
94
94
if impl(ghc >= 7.6 )
95
95
other-extensions : CApiFFI
96
96
97
- build-depends : base >= 4 && < 4.17 ,
97
+ build-depends : base >= 4 && < 4.18 ,
98
98
bytestring >= 0.9 && < 0.12
99
99
if impl(ghc >= 7.0 && < 8.0.3 )
100
100
build-depends : ghc-prim
You can’t perform that action at this time.
0 commit comments