summaryrefslogtreecommitdiffstats
path: root/src/H5Ztrans.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/H5Ztrans.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/H5Ztrans.c')
-rw-r--r--src/H5Ztrans.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5Ztrans.c b/src/H5Ztrans.c
index cd19a39..7734e8f 100644
--- a/src/H5Ztrans.c
+++ b/src/H5Ztrans.c
@@ -345,7 +345,7 @@ H5Z__unget_token(H5Z_token *current)
FUNC_ENTER_PACKAGE_NOERR
/* check args */
- HDassert(current);
+ assert(current);
current->tok_type = current->tok_last_type;
current->tok_begin = current->tok_last_begin;
@@ -380,7 +380,7 @@ H5Z__get_token(H5Z_token *current)
FUNC_ENTER_PACKAGE
/* check args */
- HDassert(current);
+ assert(current);
/* Save the last position for possible ungets */
current->tok_last_type = current->tok_type;
@@ -952,7 +952,7 @@ H5Z_xform_eval(H5Z_data_xform_t *data_xform_prop, void *array, size_t array_size
FUNC_ENTER_NOAPI(FAIL)
- HDassert(data_xform_prop);
+ assert(data_xform_prop);
tree = data_xform_prop->parse_root;
@@ -1070,7 +1070,7 @@ H5Z__xform_eval_full(H5Z_node *tree, const size_t array_size, const hid_t array_
FUNC_ENTER_PACKAGE
/* check args */
- HDassert(tree);
+ assert(tree);
HDmemset(&resl, 0, sizeof(H5Z_result));
HDmemset(&resr, 0, sizeof(H5Z_result));
@@ -1163,7 +1163,7 @@ H5Z__xform_find_type(const H5T_t *type)
FUNC_ENTER_PACKAGE
- HDassert(type);
+ assert(type);
/* Check for SHORT type */
if ((tmp = (H5T_t *)H5I_object(H5T_NATIVE_SHORT)) && 0 == H5T_cmp(type, tmp, FALSE))
@@ -1234,7 +1234,7 @@ H5Z__xform_copy_tree(H5Z_node *tree, H5Z_datval_ptrs *dat_val_pointers, H5Z_datv
FUNC_ENTER_PACKAGE
- HDassert(tree);
+ assert(tree);
if (tree->type == H5Z_XFORM_INTEGER) {
if ((ret_value = (H5Z_node *)H5MM_malloc(sizeof(H5Z_node))) == NULL)
@@ -1303,7 +1303,7 @@ H5Z__op_is_numbs(H5Z_node *_tree)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(_tree);
+ assert(_tree);
if (((_tree->lchild->type == H5Z_XFORM_INTEGER) || (_tree->lchild->type == H5Z_XFORM_FLOAT)) &&
((_tree->rchild->type == H5Z_XFORM_INTEGER) || (_tree->rchild->type == H5Z_XFORM_FLOAT)))
@@ -1334,7 +1334,7 @@ H5Z__op_is_numbs2(H5Z_node *_tree)
FUNC_ENTER_PACKAGE_NOERR
- HDassert(_tree);
+ assert(_tree);
if ((!_tree->lchild &&
((_tree->rchild->type == H5Z_XFORM_INTEGER) || (_tree->rchild->type == H5Z_XFORM_FLOAT))) ||
@@ -1457,7 +1457,7 @@ H5Z_xform_create(const char *expr)
FUNC_ENTER_NOAPI(NULL)
- HDassert(expr);
+ assert(expr);
/* Allocate space for the data transform information */
if (NULL == (data_xform_prop = (H5Z_data_xform_t *)H5MM_calloc(sizeof(H5Z_data_xform_t))))
@@ -1723,7 +1723,7 @@ H5Z_xform_extract_xform_str(const H5Z_data_xform_t *data_xform_prop)
/* There should be no way that this can be NULL since the function
* that calls this one checks to make sure it isn't before
* passing them */
- HDassert(data_xform_prop);
+ assert(data_xform_prop);
FUNC_LEAVE_NOAPI(data_xform_prop->xform_exp)
} /* H5Z_xform_extract_xform_str() */