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/H5R.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/H5R.c')
-rw-r--r-- | src/H5R.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ H5Rcreate(void *ref, hid_t loc_id, const char *name, H5R_type_t ref_type, hid_t HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataspace") /* Set up collective metadata if appropriate */ - if(H5CX_set_loc(loc_id, TRUE) < 0) + if(H5CX_set_loc(loc_id) < 0) HGOTO_ERROR(H5E_REFERENCE, H5E_CANTSET, FAIL, "can't set access property list info") /* Create reference */ |