Skip to content

Commit

Permalink
Fix unused variable warning in H5F_sfile_assert_num (HDFGroup#3700)
Browse files Browse the repository at this point in the history
  • Loading branch information
derobins authored and jhendersonHDF committed Oct 18, 2023
1 parent 5c9d76c commit e686637
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/H5Fsfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,17 @@ static H5F_sfile_node_t *H5F_sfile_head_s = NULL;
*-------------------------------------------------------------------------
*/
void
H5F_sfile_assert_num(unsigned n)
H5F_sfile_assert_num(unsigned H5_ATTR_NDEBUG_UNUSED n)
{
FUNC_ENTER_NOAPI_NOINIT_NOERR

/* The only useful work this function does is asserting so when NDEBUG
* is defined it's a no-op.
*/
#ifndef NDEBUG
if (n == 0) {
/* Sanity checking */
assert(H5F_sfile_head_s == NULL);
} /* end if */
}
else {
unsigned count; /* Number of open shared files */
H5F_sfile_node_t *curr; /* Current shared file node */
Expand All @@ -68,11 +71,11 @@ H5F_sfile_assert_num(unsigned n)

/* Advance to next shared file node */
curr = curr->next;
} /* end while */
}

/* Sanity checking */
assert(count == n);
} /* end else */
}
#endif

FUNC_LEAVE_NOAPI_VOID
} /* H5F_sfile_assert_num() */
Expand Down

0 comments on commit e686637

Please sign in to comment.