mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Fix unused variable in tselect.c (#3701)
This commit is contained in:
parent
e2d40ef16e
commit
3523d4ba66
@ -1875,8 +1875,8 @@ test_select_hyper_contig3(hid_t dset_type, hid_t xfer_plist)
|
||||
**
|
||||
****************************************************************/
|
||||
static void
|
||||
verify_select_hyper_contig_dr__run_test(const uint16_t *cube_buf, size_t H5_ATTR_NDEBUG_UNUSED cube_size,
|
||||
unsigned edge_size, unsigned cube_rank)
|
||||
verify_select_hyper_contig_dr__run_test(const uint16_t *cube_buf, size_t cube_size, unsigned edge_size,
|
||||
unsigned cube_rank)
|
||||
{
|
||||
const uint16_t *cube_ptr; /* Pointer into the cube buffer */
|
||||
uint16_t expected_value; /* Expected value in dataset */
|
||||
@ -1902,7 +1902,9 @@ verify_select_hyper_contig_dr__run_test(const uint16_t *cube_buf, size_t H5_ATTR
|
||||
m = 0;
|
||||
do {
|
||||
/* Sanity check */
|
||||
assert(s < cube_size);
|
||||
if (s >= cube_size)
|
||||
TestErrPrintf("s should not be >= cube_size! s = %zu, cube_size = %zu\n", s,
|
||||
cube_size);
|
||||
|
||||
/* Check for correct value */
|
||||
if (*cube_ptr != expected_value)
|
||||
|
Loading…
x
Reference in New Issue
Block a user