summaryrefslogtreecommitdiffstats
path: root/src/H5VLdyn_ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLdyn_ops.c')
-rw-r--r--src/H5VLdyn_ops.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5VLdyn_ops.c b/src/H5VLdyn_ops.c
index d3d4fda..3f6a3d7 100644
--- a/src/H5VLdyn_ops.c
+++ b/src/H5VLdyn_ops.c
@@ -195,8 +195,8 @@ H5VL__register_opt_operation(H5VL_subclass_t subcls, const char *op_name, int *o
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(op_val);
- HDassert(op_name && *op_name);
+ assert(op_val);
+ assert(op_name && *op_name);
/* Check for duplicate operation */
if (H5VL_opt_ops_g[subcls]) {
@@ -270,8 +270,8 @@ H5VL__find_opt_operation(H5VL_subclass_t subcls, const char *op_name, int *op_va
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(op_val);
- HDassert(op_name && *op_name);
+ assert(op_val);
+ assert(op_name && *op_name);
/* Check for dynamic operations in the VOL subclass */
if (H5VL_opt_ops_g[subcls]) {
@@ -309,7 +309,7 @@ H5VL__unregister_opt_operation(H5VL_subclass_t subcls, const char *op_name)
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(op_name && *op_name);
+ assert(op_name && *op_name);
/* Check for dynamic operations in the VOL subclass */
if (H5VL_opt_ops_g[subcls]) {