summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_token.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/H5VLnative_token.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/H5VLnative_token.c')
-rw-r--r--src/H5VLnative_token.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5VLnative_token.c b/src/H5VLnative_token.c
index b5bd7b8..4091c1d 100644
--- a/src/H5VLnative_token.c
+++ b/src/H5VLnative_token.c
@@ -70,8 +70,8 @@ H5VL__native_token_cmp(void H5_ATTR_UNUSED *obj, const H5O_token_t *token1, cons
FUNC_ENTER_PACKAGE_NOERR
/* Check parameters */
- HDassert(token1);
- HDassert(token2);
+ assert(token1);
+ assert(token2);
*cmp_value = HDmemcmp(token1, token2, sizeof(H5O_token_t));
@@ -98,8 +98,8 @@ H5VL__native_token_to_str(void *obj, H5I_type_t obj_type, const H5O_token_t *tok
FUNC_ENTER_PACKAGE
/* Check parameters */
- HDassert(obj);
- HDassert(token);
+ assert(obj);
+ assert(token);
if (H5VL_native_token_to_addr(obj, obj_type, *token, &addr) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTDECODE, FAIL, "can't convert object token to address")
@@ -137,7 +137,7 @@ H5VL__native_str_to_token(void *obj, H5I_type_t obj_type, const char *token_str,
FUNC_ENTER_PACKAGE
/* Check parameters */
- HDassert(token_str);
+ assert(token_str);
HDsscanf(token_str, "%" PRIuHADDR, &addr);