summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_dataset.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_dataset.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_dataset.c')
-rw-r--r--src/H5VLnative_dataset.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/H5VLnative_dataset.c b/src/H5VLnative_dataset.c
index f343761..647e422 100644
--- a/src/H5VLnative_dataset.c
+++ b/src/H5VLnative_dataset.c
@@ -90,7 +90,7 @@ H5VL__native_dataset_io_setup(size_t count, void *obj[], hid_t mem_type_id[], hi
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(dinfo);
+ assert(dinfo);
/* Get shared file */
f_sh = H5F_SHARED(((H5D_t *)obj[0])->oloc.file);
@@ -99,7 +99,7 @@ H5VL__native_dataset_io_setup(size_t count, void *obj[], hid_t mem_type_id[], hi
for (i = 0; i < count; i++) {
/* Set up dset */
dinfo[i].dset = (H5D_t *)obj[i];
- HDassert(dinfo[i].dset);
+ assert(dinfo[i].dset);
/* Check dataset's file pointer is valid */
if (NULL == dinfo[i].dset->oloc.file)
@@ -206,7 +206,7 @@ H5VL__native_dataset_io_cleanup(size_t count, hid_t mem_space_id[], hid_t file_s
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(dinfo);
+ assert(dinfo);
/* Iterate over datasets */
for (i = 0; i < count; i++) {
@@ -562,7 +562,7 @@ H5VL__native_dataset_optional(void *obj, H5VL_optional_args_t *args, hid_t dxpl_
FUNC_ENTER_PACKAGE
/* Sanity checks */
- HDassert(dset);
+ assert(dset);
/* Set DXPL for operation */
H5CX_set_dxpl(dxpl_id);
@@ -635,8 +635,8 @@ H5VL__native_dataset_optional(void *obj, H5VL_optional_args_t *args, hid_t dxpl_
H5VL_native_dataset_get_num_chunks_t *gnc_args = &opt_args->get_num_chunks;
const H5S_t *space = NULL;
- HDassert(dset->shared);
- HDassert(dset->shared->space);
+ assert(dset->shared);
+ assert(dset->shared->space);
/* When default dataspace is given, use the dataset's dataspace */
if (gnc_args->space_id == H5S_ALL)
@@ -661,8 +661,8 @@ H5VL__native_dataset_optional(void *obj, H5VL_optional_args_t *args, hid_t dxpl_
H5VL_native_dataset_get_chunk_info_by_idx_t *gcibi_args = &opt_args->get_chunk_info_by_idx;
const H5S_t *space;
- HDassert(dset->shared);
- HDassert(dset->shared->space);
+ assert(dset->shared);
+ assert(dset->shared->space);
/* When default dataspace is given, use the dataset's dataspace */
if (gcibi_args->space_id == H5S_ALL)
@@ -687,7 +687,7 @@ H5VL__native_dataset_optional(void *obj, H5VL_optional_args_t *args, hid_t dxpl_
case H5VL_NATIVE_DATASET_GET_CHUNK_INFO_BY_COORD: {
H5VL_native_dataset_get_chunk_info_by_coord_t *gcibc_args = &opt_args->get_chunk_info_by_coord;
- HDassert(dset->shared);
+ assert(dset->shared);
/* Make sure the dataset is chunked */
if (H5D_CHUNKED != dset->shared->layout.type)
@@ -771,7 +771,7 @@ H5VL__native_dataset_optional(void *obj, H5VL_optional_args_t *args, hid_t dxpl_
/* H5Dchunk_iter */
case H5VL_NATIVE_DATASET_CHUNK_ITER: {
/* Sanity check */
- HDassert(dset->shared);
+ assert(dset->shared);
/* Make sure the dataset is chunked */
if (H5D_CHUNKED != dset->shared->layout.type)