summaryrefslogtreecommitdiffstats
path: root/src/H5HGquery.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /src/H5HGquery.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'src/H5HGquery.c')
-rw-r--r--src/H5HGquery.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5HGquery.c b/src/H5HGquery.c
index 9e4c789..ac36f21 100644
--- a/src/H5HGquery.c
+++ b/src/H5HGquery.c
@@ -77,7 +77,7 @@ H5HG_get_addr(const H5HG_heap_t *heap)
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(heap);
+ assert(heap);
FUNC_LEAVE_NOAPI(heap->addr)
} /* H5HG_get_addr() */
@@ -100,7 +100,7 @@ H5HG_get_size(const H5HG_heap_t *heap)
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(heap);
+ assert(heap);
FUNC_LEAVE_NOAPI(heap->size)
} /* H5HG_get_size() */
@@ -123,7 +123,7 @@ H5HG_get_free_size(const H5HG_heap_t *heap)
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(heap);
+ assert(heap);
FUNC_LEAVE_NOAPI(heap->obj[0].size)
} /* H5HG_get_free_size() */