diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-03-27 04:19:08 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-03-27 04:19:08 (GMT) |
commit | eecf997bf579d9e9591b1ee3797f499319bbdfe5 (patch) | |
tree | 703ec20c5b8bbd605d9bb2a7d4e33e74c3da4562 /src/H5O.c | |
parent | fb20d376addcb646d130181e003f237b8437d399 (diff) | |
download | hdf5-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |