Skip to content

Commit

Permalink
Correct code vars
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Jan 23, 2025
1 parent 44f3343 commit 4de5cfa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/H5Zdeflate.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@ H5Z__filter_deflate(unsigned flags, size_t cd_nelmts, const unsigned cd_values[]
*/
const Bytef *z_src = (const Bytef *)(*buf);
Bytef *z_dst; /*destination buffer */
uLongf z_dst_nbytes = (uLongf)compressBound(nbytes);
uLong z_src_nbytes = (uLong)nbytes;
int aggression; /* Compression aggression setting */
#if defined(H5_HAVE_ZLIBNG_H)
uLongf z_dst_nbytes = (uLongf)zng_compressBound(nbytes);
#else
Expand Down

0 comments on commit 4de5cfa

Please sign in to comment.