summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_token.c
diff options
context:
space:
mode:
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);