summaryrefslogtreecommitdiffstats
path: root/src/H5O.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/H5O.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/H5O.c')
-rw-r--r--src/H5O.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5O.c b/src/H5O.c
index 49e13ce..f700ac9 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -335,7 +335,7 @@ H5Oincr_refcount(hid_t object_id)
HGOTO_ERROR(H5E_ATOM, H5E_BADVALUE, FAIL, "unable to get object location from ID")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(object_id, TRUE) < 0)
+ if(H5CX_set_loc(object_id) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTSET, FAIL, "can't set access property list info")
/* Change the object's refcount */
@@ -381,7 +381,7 @@ H5Odecr_refcount(hid_t object_id)
HGOTO_ERROR(H5E_ATOM, H5E_BADVALUE, FAIL, "unable to get object location from ID")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(object_id, TRUE) < 0)
+ if(H5CX_set_loc(object_id) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTSET, FAIL, "can't set access property list info")
/* Change the object's refcount */
@@ -595,7 +595,7 @@ H5Oset_comment(hid_t obj_id, const char *comment)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a location")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(obj_id, TRUE) < 0)
+ if(H5CX_set_loc(obj_id) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* (Re)set the object's comment */