summaryrefslogtreecommitdiffstats
path: root/src/H5Dtest.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-30 03:27:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-30 03:27:41 (GMT)
commitf0ce4df67f82ee7308ad812a1772079fcb141182 (patch)
treeca5bd1f64a5e705af3efafcae3eb705ad767d97a /src/H5Dtest.c
parentccc0d85878139e0d00a9376af719ca0ee2bea585 (diff)
downloadhdf5-f0ce4df67f82ee7308ad812a1772079fcb141182.zip
hdf5-f0ce4df67f82ee7308ad812a1772079fcb141182.tar.gz
hdf5-f0ce4df67f82ee7308ad812a1772079fcb141182.tar.bz2
[svn-r17272] Description:
Finish pushing contiguous storage size from 'layout' into 'storage" data structure. Tested on: FreeBSD/32 6.3 (duty) w/debug Too minor to require h5committest
Diffstat (limited to 'src/H5Dtest.c')
-rw-r--r--src/H5Dtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dtest.c b/src/H5Dtest.c
index d9a418e..79568fe 100644
--- a/src/H5Dtest.c
+++ b/src/H5Dtest.c
@@ -128,7 +128,7 @@ H5D_layout_contig_size_test(hid_t did, hsize_t *size)
if(size) {
HDassert(dset->shared->layout.type == H5D_CONTIGUOUS);
- *size = dset->shared->layout.u.contig.size;
+ *size = dset->shared->layout.store.u.contig.size;
} /* end if */
done:
@@ -142,7 +142,7 @@ done:
PURPOSE
Determine current the size of the dataset's chunk cache
USAGE
- herr_t H5D_layout_contig_size_test(did, size)
+ herr_t H5D_current_cache_size_test(did, size)
hid_t did; IN: Dataset to query
hsize_t *size; OUT: Pointer to location to place size info
RETURNS