Skip to content

Commit

Permalink
fix typo with zlib smoke buffer sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Nov 7, 2023
1 parent d61aa69 commit 1e6c16c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/thirdparty/t_zlib_smoke.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ TEST(zlib_smoke, zlib_basic)

// exercise compress and uncompress interface

Bytef compress_dest[32];
Bytef compress_src[32];
Bytef compress_dest[64];
Bytef uncompress_dest[64];

uLongf compress_dest_len = 32;
uLongf compress_src_len = 32;
uLongf uncompress_dest_len = 32;
uLongf compress_dest_len = 64;
uLongf uncompress_dest_len = 64;

for(int i=0;i<32;i++)
{
Expand Down

0 comments on commit 1e6c16c

Please sign in to comment.