summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-11-24 15:56:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-11-24 15:56:09 (GMT)
commit8205a888cb60bfa0e62b632ca3f8a828248146f4 (patch)
tree50019c4553013143ac8bf7241f43eca651bd765e /src/H5Dint.c
parent1b8033b5946e43613c98f40fb23282bdc4b49d0a (diff)
downloadhdf5-8205a888cb60bfa0e62b632ca3f8a828248146f4.zip
hdf5-8205a888cb60bfa0e62b632ca3f8a828248146f4.tar.gz
hdf5-8205a888cb60bfa0e62b632ca3f8a828248146f4.tar.bz2
[svn-r19840] Description:
Check in Vailin's "implicit" chunk indexing code. Tested on: Mac OS X/32 10.6.5 (amazon) w/debug & production (further testing upcoming shortly)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 2b2715b..3120b86 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -1127,12 +1127,12 @@ H5D_create(H5F_t *file, hid_t type_id, const H5S_t *space, hid_t dcpl_id,
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, NULL, "can't set latest version of fill value")
/* Set the latest version for the layout message */
- if(H5D_layout_set_latest_version(&new_dset->shared->layout, new_dset->shared->space) < 0)
+ if(H5D_layout_set_latest_version(&new_dset->shared->layout, new_dset->shared->space, &new_dset->shared->dcpl_cache) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, NULL, "can't set latest version of layout")
} /* end if */
else if(new_dset->shared->layout.version >= H5O_LAYOUT_VERSION_4) {
/* Use latest indexing type for layout message version >= 4 */
- if(H5D_layout_set_latest_indexing(&new_dset->shared->layout, new_dset->shared->space) < 0)
+ if(H5D_layout_set_latest_indexing(&new_dset->shared->layout, new_dset->shared->space, &new_dset->shared->dcpl_cache) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, NULL, "can't set latest indexing")
} /* end if */