summaryrefslogtreecommitdiffstats
path: root/src/H5Dearray.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-06-02 21:17:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-06-02 21:17:26 (GMT)
commitb941208aa1dab642491d9b856e8e1d4912273ffc (patch)
treee74c72bb0c8be7b0106801692df3fc5a76ebf157 /src/H5Dearray.c
parentbae373c32236ad99425154f5fcec4cb185e583d0 (diff)
downloadhdf5-b941208aa1dab642491d9b856e8e1d4912273ffc.zip
hdf5-b941208aa1dab642491d9b856e8e1d4912273ffc.tar.gz
hdf5-b941208aa1dab642491d9b856e8e1d4912273ffc.tar.bz2
[svn-r16998] Description:
Bring r16982:16997 from trunk into revise_chunks branch. Tested on: Mac OS X/32 10.5.7 (amazon) h5committest not needed on this branch
Diffstat (limited to 'src/H5Dearray.c')
-rw-r--r--src/H5Dearray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dearray.c b/src/H5Dearray.c
index 66de57d..bca9bb0 100644
--- a/src/H5Dearray.c
+++ b/src/H5Dearray.c
@@ -1516,7 +1516,7 @@ H5D_earray_idx_depend(const H5D_chk_idx_info_t *idx_info,
/* Create flush dependency between the child_entry and the piece of metadata
* in the extensible array that contains the entry for this chunk.
*/
- if(H5EA_depend(ea, idx_info->dxpl_id, idx, child_entry) < 0)
+ if(H5EA_support(ea, idx_info->dxpl_id, idx, child_entry) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTDEPEND, FAIL, "unable to create flush dependency on extensible array metadata")
done:
@@ -1567,7 +1567,7 @@ H5D_earray_idx_undepend(const H5D_chk_idx_info_t *idx_info,
/* Remove flush dependency between the child_entry and the piece of metadata
* in the extensible array that contains the entry for this chunk.
*/
- if(H5EA_undepend(ea, idx_info->dxpl_id, idx, child_entry) < 0)
+ if(H5EA_unsupport(ea, idx_info->dxpl_id, idx, child_entry) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTUNDEPEND, FAIL, "unable to remove flush dependency on extensible array metadata")
done: