summaryrefslogtreecommitdiffstats
path: root/src/H5Tcommit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r--src/H5Tcommit.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c
index 2a65d5c..922b2f5 100644
--- a/src/H5Tcommit.c
+++ b/src/H5Tcommit.c
@@ -249,11 +249,11 @@ H5T__commit_named(const H5G_loc_t *loc, const char *name, H5T_t *dt, hid_t lcpl_
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(loc);
- HDassert(name && *name);
- HDassert(dt);
- HDassert(lcpl_id != H5P_DEFAULT);
- HDassert(tcpl_id != H5P_DEFAULT);
+ assert(loc);
+ assert(name && *name);
+ assert(dt);
+ assert(lcpl_id != H5P_DEFAULT);
+ assert(tcpl_id != H5P_DEFAULT);
/* Record the type's state so that we can revert to it if linking fails */
old_state = dt->shared->state;
@@ -270,7 +270,7 @@ H5T__commit_named(const H5G_loc_t *loc, const char *name, H5T_t *dt, hid_t lcpl_
/* Create the new named datatype and link it to its parent group */
if (H5L_link_object(loc, name, &ocrt_info, lcpl_id) < 0)
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "unable to create and link to named datatype")
- HDassert(ocrt_info.new_obj);
+ assert(ocrt_info.new_obj);
done:
/* If the datatype was committed but something failed after that, we need
@@ -402,9 +402,9 @@ H5T__commit_anon(H5F_t *file, H5T_t *type, hid_t tcpl_id)
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(file);
- HDassert(type);
- HDassert(tcpl_id != H5P_DEFAULT);
+ assert(file);
+ assert(type);
+ assert(tcpl_id != H5P_DEFAULT);
/* Commit the type */
if (H5T__commit(file, type, tcpl_id) < 0)
@@ -448,9 +448,9 @@ H5T__commit(H5F_t *file, H5T_t *type, hid_t tcpl_id)
FUNC_ENTER_PACKAGE
- HDassert(file);
- HDassert(type);
- HDassert(tcpl_id != H5P_DEFAULT);
+ assert(file);
+ assert(type);
+ assert(tcpl_id != H5P_DEFAULT);
/* Check if we are allowed to write to this file */
if (0 == (H5F_INTENT(file) & H5F_ACC_RDWR))
@@ -489,7 +489,7 @@ H5T__commit(H5F_t *file, H5T_t *type, hid_t tcpl_id)
/* Calculate message size information, for creating object header */
dtype_size = H5O_msg_size_f(file, tcpl_id, H5O_DTYPE_ID, type, (size_t)0);
- HDassert(dtype_size);
+ assert(dtype_size);
/*
* Create the object header and open it for write access. Insert the data
@@ -600,8 +600,8 @@ H5T_link(const H5T_t *type, int adjust)
FUNC_ENTER_NOAPI((-1))
- HDassert(type);
- HDassert(type->sh_loc.type == H5O_SHARE_TYPE_COMMITTED);
+ assert(type);
+ assert(type->sh_loc.type == H5O_SHARE_TYPE_COMMITTED);
/* Adjust the link count on the named datatype */
if ((ret_value = H5O_link(&type->oloc, adjust)) < 0)
@@ -937,7 +937,7 @@ H5T__get_create_plist(const H5T_t *type)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(type);
+ assert(type);
/* Copy the default datatype creation property list */
if (NULL == (tcpl_plist = (H5P_genplist_t *)H5I_object(H5P_LST_DATATYPE_CREATE_ID_g)))
@@ -992,8 +992,8 @@ H5T__open_name(const H5G_loc_t *loc, const char *name)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(loc);
- HDassert(name);
+ assert(loc);
+ assert(name);
/* Set up datatype location to fill in */
type_loc.oloc = &oloc;
@@ -1053,7 +1053,7 @@ H5T_open(const H5G_loc_t *loc)
FUNC_ENTER_NOAPI(NULL)
- HDassert(loc);
+ assert(loc);
/* Check if datatype was already open */
if (NULL == (shared_fo = (H5T_shared_t *)H5FO_opened(loc->oloc->file, loc->oloc->addr))) {
@@ -1172,7 +1172,7 @@ H5T__open_oid(const H5G_loc_t *loc)
FUNC_ENTER_PACKAGE_TAG(loc->oloc->addr)
- HDassert(loc);
+ assert(loc);
/* Open named datatype object in file */
if (H5O_open(loc->oloc) < 0)
@@ -1224,7 +1224,7 @@ H5T_update_shared(H5T_t *dt)
{
FUNC_ENTER_NOAPI_NOINIT_NOERR
- HDassert(dt);
+ assert(dt);
/* Set the shared location fields from the named datatype info */
H5O_UPDATE_SHARED(&(dt->sh_loc), H5O_SHARE_TYPE_COMMITTED, dt->oloc.file, H5O_DTYPE_ID, 0, dt->oloc.addr)
@@ -1358,7 +1358,7 @@ H5T_save_refresh_state(hid_t tid, H5O_shared_t *cached_H5O_shared)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(cached_H5O_shared);
+ assert(cached_H5O_shared);
if (NULL == (dt = (H5T_t *)H5I_object_verify(tid, H5I_DATATYPE)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "tid is not a datatype ID")
@@ -1398,7 +1398,7 @@ H5T_restore_refresh_state(hid_t tid, H5O_shared_t *cached_H5O_shared)
FUNC_ENTER_NOAPI(FAIL)
- HDassert(cached_H5O_shared);
+ assert(cached_H5O_shared);
if (NULL == (dt = (H5T_t *)H5I_object_verify(tid, H5I_DATATYPE)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "tid not a datatype ID")
@@ -1435,7 +1435,7 @@ H5T_already_vol_managed(const H5T_t *dt)
FUNC_ENTER_NOAPI_NOINIT_NOERR
/* Sanity check */
- HDassert(dt);
+ assert(dt);
FUNC_LEAVE_NOAPI(dt->vol_obj != NULL)
} /* end H5T_already_vol_managed() */