summaryrefslogtreecommitdiffstats
path: root/src/H5Toh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Toh.c')
-rw-r--r--src/H5Toh.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Toh.c b/src/H5Toh.c
index a1891a6..50c0236 100644
--- a/src/H5Toh.c
+++ b/src/H5Toh.c
@@ -93,7 +93,7 @@ H5O__dtype_isa(const H5O_t *oh)
FUNC_ENTER_PACKAGE
- HDassert(oh);
+ assert(oh);
if ((ret_value = H5O_msg_exists_oh(oh, H5O_DTYPE_ID)) < 0)
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "unable to read object header")
@@ -123,7 +123,7 @@ H5O__dtype_open(const H5G_loc_t *obj_loc, H5I_type_t *opened_type)
FUNC_ENTER_PACKAGE
- HDassert(obj_loc);
+ assert(obj_loc);
*opened_type = H5I_DATATYPE;
@@ -163,9 +163,9 @@ H5O__dtype_create(H5F_t *f, void *_crt_info, H5G_loc_t *obj_loc)
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(f);
- HDassert(crt_info);
- HDassert(obj_loc);
+ assert(f);
+ assert(crt_info);
+ assert(obj_loc);
/* Commit the type to the file */
if (H5T__commit(f, crt_info->dt, crt_info->tcpl_id) < 0)