summaryrefslogtreecommitdiffstats
path: root/src/H5Fcwfs.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 20:43:30 (GMT)
committerGitHub <noreply@github.com>2023-07-27 20:43:30 (GMT)
commit1e91d96fa02466ffe451319bdac1005f84dc7993 (patch)
tree4de04ef502c313dfd766497b20235188761146c0 /src/H5Fcwfs.c
parent95e5349089b95dfb95f0f8ce2d6db1bc04ba6c82 (diff)
downloadhdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.zip
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.gz
hdf5-1e91d96fa02466ffe451319bdac1005f84dc7993.tar.bz2
Brings over most of the HD prefix removal (#3293)
Diffstat (limited to 'src/H5Fcwfs.c')
-rw-r--r--src/H5Fcwfs.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/H5Fcwfs.c b/src/H5Fcwfs.c
index 1eb8b2a..7d64a12 100644
--- a/src/H5Fcwfs.c
+++ b/src/H5Fcwfs.c
@@ -99,9 +99,9 @@ H5F_cwfs_add(H5F_t *f, H5HG_heap_t *heap)
FUNC_ENTER_NOAPI(FAIL)
/* Check args */
- HDassert(f);
- HDassert(f->shared);
- HDassert(heap);
+ assert(f);
+ assert(f->shared);
+ assert(heap);
/*
* Add the new heap to the CWFS list, removing some other entry if
@@ -158,9 +158,9 @@ H5F_cwfs_find_free_heap(H5F_t *f, size_t need, haddr_t *addr)
FUNC_ENTER_NOAPI(FAIL)
/* Check args */
- HDassert(f);
- HDassert(f->shared);
- HDassert(addr);
+ assert(f);
+ assert(f->shared);
+ assert(addr);
/* Note that we don't have metadata cache locks on the entries in
* f->shared->cwfs.
@@ -254,9 +254,9 @@ H5F_cwfs_advance_heap(H5F_t *f, H5HG_heap_t *heap, hbool_t add_heap)
FUNC_ENTER_NOAPI_NOERR
/* Check args */
- HDassert(f);
- HDassert(f->shared);
- HDassert(heap);
+ assert(f);
+ assert(f->shared);
+ assert(heap);
for (u = 0; u < f->shared->ncwfs; u++)
if (f->shared->cwfs[u] == heap) {
@@ -296,8 +296,8 @@ H5F_cwfs_remove_heap(H5F_shared_t *shared, H5HG_heap_t *heap)
FUNC_ENTER_NOAPI_NOERR
/* Check args */
- HDassert(shared);
- HDassert(heap);
+ assert(shared);
+ assert(heap);
/* Remove the heap from the CWFS list */
for (u = 0; u < shared->ncwfs; u++) {