summaryrefslogtreecommitdiffstats
path: root/src/H5Eint.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/H5Eint.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/H5Eint.c')
-rw-r--r--src/H5Eint.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/H5Eint.c b/src/H5Eint.c
index 759dfbc..64292f3 100644
--- a/src/H5Eint.c
+++ b/src/H5Eint.c
@@ -121,7 +121,7 @@ H5E__get_msg(const H5E_msg_t *msg, H5E_type_t *type, char *msg_str, size_t size)
FUNC_ENTER_PACKAGE_NOERR
/* Check arguments */
- HDassert(msg);
+ assert(msg);
/* Get the length of the message string */
len = (ssize_t)HDstrlen(msg->msg);
@@ -192,7 +192,7 @@ H5E__walk1_cb(int n, H5E_error1_t *err_desc, void *client_data)
FUNC_ENTER_PACKAGE_NOERR
/* Check arguments */
- HDassert(err_desc);
+ assert(err_desc);
/* If no client data was passed, output to stderr */
if (!client_data)
@@ -315,7 +315,7 @@ H5E__walk2_cb(unsigned n, const H5E_error2_t *err_desc, void *client_data)
FUNC_ENTER_PACKAGE_NOERR
/* Check arguments */
- HDassert(err_desc);
+ assert(err_desc);
/* If no client data was passed, output to stderr */
if (!client_data)
@@ -421,7 +421,7 @@ H5E__print(const H5E_t *estack, FILE *stream, hbool_t bk_compatible)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(estack);
+ assert(estack);
/* If no stream was given, use stderr */
if (!stream)
@@ -440,7 +440,7 @@ H5E__print(const H5E_t *estack, FILE *stream, hbool_t bk_compatible)
if (H5E__walk(estack, H5E_WALK_DOWNWARD, &walk_op, (void *)&eprint) < 0)
HGOTO_ERROR(H5E_ERROR, H5E_CANTLIST, FAIL, "can't walk error stack")
#else /* H5_NO_DEPRECATED_SYMBOLS */
- HDassert(0 && "version 1 error stack print without deprecated symbols!");
+ assert(0 && "version 1 error stack print without deprecated symbols!");
#endif /* H5_NO_DEPRECATED_SYMBOLS */
} /* end if */
else {
@@ -493,8 +493,8 @@ H5E__walk(const H5E_t *estack, H5E_direction_t direction, const H5E_walk_op_t *o
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(estack);
- HDassert(op);
+ assert(estack);
+ assert(op);
/* check args, but rather than failing use some default value */
if (direction != H5E_WALK_UPWARD && direction != H5E_WALK_DOWNWARD)
@@ -539,11 +539,11 @@ H5E__walk(const H5E_t *estack, H5E_direction_t direction, const H5E_walk_op_t *o
HERROR(H5E_ERROR, H5E_CANTLIST, "can't walk error stack");
} /* end if */
#else /* H5_NO_DEPRECATED_SYMBOLS */
- HDassert(0 && "version 1 error stack walk without deprecated symbols!");
+ assert(0 && "version 1 error stack walk without deprecated symbols!");
#endif /* H5_NO_DEPRECATED_SYMBOLS */
} /* end if */
else {
- HDassert(op->vers == 2);
+ assert(op->vers == 2);
if (op->u.func2) {
ret_value = SUCCEED;
if (H5E_WALK_UPWARD == direction) {
@@ -585,7 +585,7 @@ H5E__get_auto(const H5E_t *estack, H5E_auto_op_t *op, void **client_data)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(estack);
+ assert(estack);
/* Retrieve the requested information */
if (op)
@@ -624,7 +624,7 @@ H5E__set_auto(H5E_t *estack, const H5E_auto_op_t *op, void *client_data)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(estack);
+ assert(estack);
/* Set the automatic error reporting info */
estack->auto_op = *op;
@@ -664,10 +664,10 @@ H5E_printf_stack(H5E_t *estack, const char *file, const char *func, unsigned lin
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(cls_id > 0);
- HDassert(maj_id > 0);
- HDassert(min_id > 0);
- HDassert(fmt);
+ assert(cls_id > 0);
+ assert(maj_id > 0);
+ assert(min_id > 0);
+ assert(fmt);
/* Note that the variable-argument parsing for the format is identical in
* the H5Epush2() routine - correct errors and make changes in both
@@ -734,9 +734,9 @@ H5E__push_stack(H5E_t *estack, const char *file, const char *func, unsigned line
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(cls_id > 0);
- HDassert(maj_id > 0);
- HDassert(min_id > 0);
+ assert(cls_id > 0);
+ assert(maj_id > 0);
+ assert(min_id > 0);
/* Check for 'default' error stack */
if (estack == NULL)
@@ -758,7 +758,7 @@ H5E__push_stack(H5E_t *estack, const char *file, const char *func, unsigned line
/*
* Push the error if there's room. Otherwise just forget it.
*/
- HDassert(estack);
+ assert(estack);
if (estack->nused < H5E_NSLOTS) {
/* Increment the IDs to indicate that they are used in this stack */
@@ -809,8 +809,8 @@ H5E__clear_entries(H5E_t *estack, size_t nentries)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(estack);
- HDassert(estack->nused >= nentries);
+ assert(estack);
+ assert(estack->nused >= nentries);
/* Empty the error stack from the top down */
for (u = 0; nentries > 0; nentries--, u++) {
@@ -869,7 +869,7 @@ H5E_clear_stack(H5E_t *estack)
HGOTO_ERROR(H5E_ERROR, H5E_CANTGET, FAIL, "can't get current error stack")
/* Empty the error stack */
- HDassert(estack);
+ assert(estack);
if (estack->nused)
if (H5E__clear_entries(estack, estack->nused) < 0)
HGOTO_ERROR(H5E_ERROR, H5E_CANTSET, FAIL, "can't clear error stack")
@@ -899,8 +899,8 @@ H5E__pop(H5E_t *estack, size_t count)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(estack);
- HDassert(estack->nused >= count);
+ assert(estack);
+ assert(estack->nused >= count);
/* Remove the entries from the error stack */
if (H5E__clear_entries(estack, count) < 0)
@@ -935,7 +935,7 @@ H5E_dump_api_stack(hbool_t is_api)
if (is_api) {
H5E_t *estack = H5E__get_my_stack();
- HDassert(estack);
+ assert(estack);
#ifdef H5_NO_DEPRECATED_SYMBOLS
if (estack->auto_op.func2)