summaryrefslogtreecommitdiffstats
path: root/src/H5G.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/H5G.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/H5G.c')
-rw-r--r--src/H5G.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5G.c b/src/H5G.c
index c95a855..fa065fa 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -719,7 +719,7 @@ H5Gflush(hid_t group_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a group")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(group_id, TRUE) < 0)
+ if(H5CX_set_loc(group_id) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* Flush group's metadata to file */
@@ -757,7 +757,7 @@ H5Grefresh(hid_t group_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a group")
/* Set up collective metadata if appropriate */
- if(H5CX_set_loc(group_id, TRUE) < 0)
+ if(H5CX_set_loc(group_id) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't set collective metadata read info")
/* Call private function to refresh group object */