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/H5F.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/H5F.c')
-rw-r--r-- | src/H5F.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1442,7 +1442,7 @@ H5Fstart_swmr_write(hid_t file_id) HGOTO_ERROR(H5E_FILE, H5E_UNSUPPORTED, FAIL, "can't have both SWMR and MDC cache image") /* Set up collective metadata if appropriate */ - if(H5CX_set_loc(file_id, TRUE) < 0) + if(H5CX_set_loc(file_id) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set collective metadata read info") /* Call the internal routine */ @@ -1575,7 +1575,7 @@ H5Fset_libver_bounds(hid_t file_id, H5F_libver_t low, H5F_libver_t high) HGOTO_ERROR(H5E_FILE, H5E_BADVALUE, FAIL, "not a file ID") /* Set up collective metadata if appropriate */ - if(H5CX_set_loc(file_id, TRUE) < 0) + if(H5CX_set_loc(file_id) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set collective metadata read info") /* Call internal set_libver_bounds function */ @@ -1614,7 +1614,7 @@ H5Fformat_convert(hid_t fid) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid file identifier") /* Set up collective metadata if appropriate */ - if(H5CX_set_loc(fid, TRUE) < 0) + if(H5CX_set_loc(fid) < 0) HGOTO_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "can't set collective metadata read info") /* Call the internal routine */ |