summaryrefslogtreecommitdiffstats
path: root/src/H5SMbtree2.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/H5SMbtree2.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/H5SMbtree2.c')
-rw-r--r--src/H5SMbtree2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5SMbtree2.c b/src/H5SMbtree2.c
index 15b0125..5ba9d9b 100644
--- a/src/H5SMbtree2.c
+++ b/src/H5SMbtree2.c
@@ -92,7 +92,7 @@ H5SM__bt2_crt_context(void *_f)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(f);
+ assert(f);
/* Allocate callback context */
if (NULL == (ctx = H5FL_MALLOC(H5SM_bt2_ctx_t)))
@@ -129,7 +129,7 @@ H5SM__bt2_dst_context(void *_ctx)
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(ctx);
+ assert(ctx);
/* Release callback context */
ctx = H5FL_FREE(H5SM_bt2_ctx_t, ctx);
@@ -190,7 +190,7 @@ H5SM__bt2_debug(FILE *stream, int indent, int fwidth, const void *record, const
"Shared Message in heap:", sohm->u.heap_loc.fheap_id.val, sohm->hash,
sohm->u.heap_loc.ref_count);
else {
- HDassert(sohm->location == H5SM_IN_OH);
+ assert(sohm->location == H5SM_IN_OH);
HDfprintf(stream, "%*s%-*s {%" PRIuHADDR ", %" PRIo32 ", %x, %" PRIx32 "}\n", indent, "", fwidth,
"Shared Message in OH:", sohm->u.mesg_loc.oh_addr, sohm->hash, sohm->msg_type_id,
sohm->u.mesg_loc.index);