summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-03-27 04:19:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-03-27 04:19:08 (GMT)
commiteecf997bf579d9e9591b1ee3797f499319bbdfe5 (patch)
tree703ec20c5b8bbd605d9bb2a7d4e33e74c3da4562 /src/H5D.c
parentfb20d376addcb646d130181e003f237b8437d399 (diff)
downloadhdf5-eecf997bf579d9e9591b1ee3797f499319bbdfe5.zip
hdf5-eecf997bf579d9e9591b1ee3797f499319bbdfe5.tar.gz
hdf5-eecf997bf579d9e9591b1ee3797f499319bbdfe5.tar.bz2
Remove redundant 'is_collective' parameter from H5CX_set_loc.
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 258bac1..61ccb5a 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -898,7 +898,7 @@ H5Dset_extent(hid_t dset_id, const hsize_t size[])
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no size specified")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(dset_id, TRUE) < 0)
+ if(H5CX_set_loc(dset_id) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* Private function */
@@ -936,7 +936,7 @@ H5Dflush(hid_t dset_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataset")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(dset_id, TRUE) < 0)
+ if(H5CX_set_loc(dset_id) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* Flush dataset information cached in memory */
@@ -974,7 +974,7 @@ H5Drefresh(hid_t dset_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataset")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(dset_id, TRUE) < 0)
+ if(H5CX_set_loc(dset_id) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* Call private function to refresh the dataset object */
@@ -1016,7 +1016,7 @@ H5Dformat_convert(hid_t dset_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataset")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(dset_id, TRUE) < 0)
+ if(H5CX_set_loc(dset_id) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, FAIL, "can't set collective metadata read info")
switch(dset->shared->layout.type) {