X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=Brotli.xs;h=92b4809e9c3b836a433da88eba34f06a290a95ec;hb=782ccd86a3af112c4e27c2319607c2dc451cf6c5;hp=a14b828c089dc170df4e576f32b2d8da4b7b3fbb;hpb=5f975f9cf1bea0a9bafd5c09ef9cb7ed24410eba;p=io-compress-brotli.git diff --git a/Brotli.xs b/Brotli.xs index a14b828..92b4809 100644 --- a/Brotli.xs +++ b/Brotli.xs @@ -60,7 +60,12 @@ SV* BrotliDecoderDecompressStream(state, in) while(result == BROTLI_RESULT_NEEDS_MORE_OUTPUT) { next_out = buffer; available_out=BUFFER_SIZE; - result = BrotliDecoderDecompressStream((BrotliDecoderState*) SvIV(state), &available_in, (const uint8_t**) &next_in, &available_out, &next_out, &total_out); + result = BrotliDecoderDecompressStream( (BrotliDecoderState*) SvIV(state), + &available_in, + (const uint8_t**) &next_in, + &available_out, + &next_out, + &total_out ); if(!result){ croak("Error in BrotliDecoderDecompressStream"); }