Skip to content

Commit

Permalink
style(autofix.ci): automated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Dec 31, 2024
1 parent aa7c17e commit 511387c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void zlib_compress( const std::string &input, std::vector<std::byte> &output )
void zlib_decompress( const void *compressed_data, int compressed_size, std::string &output )
{
// We need to guess at the decompressed size - we expect things to compress fairly well.
uLongf decompressedSize = static_cast<uLongf>(compressed_size) * 8;
uLongf decompressedSize = static_cast<uLongf>( compressed_size ) * 8;
output.resize( decompressedSize );

int result;
Expand Down

0 comments on commit 511387c

Please sign in to comment.