summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-30 03:36:09 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-30 03:36:09 (GMT)
commiteceb405b87abaa4484df4b94d9461ce6dce45890 (patch)
tree9eb653f6ed7ede8aef3872d0217e84d42fc9e4e6 /src/H5Dint.c
parent238950487f6348544b64fda3143479c6ab589fde (diff)
downloadhdf5-eceb405b87abaa4484df4b94d9461ce6dce45890.zip
hdf5-eceb405b87abaa4484df4b94d9461ce6dce45890.tar.gz
hdf5-eceb405b87abaa4484df4b94d9461ce6dce45890.tar.bz2
[svn-r17273] Description:
Bring r17269:17272 from trunk to revise_chunks branch Tested on: FreeBSD/32 6.3 (duty) w/debug (h5committest not required for this branch)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 91156e6..f07e220 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -1788,7 +1788,7 @@ H5D_get_storage_size(H5D_t *dset, hid_t dxpl_id)
case H5D_CONTIGUOUS:
/* Datasets which are not allocated yet are using no space on disk */
if((*dset->shared->layout.ops->is_space_alloc)(&dset->shared->layout))
- ret_value = dset->shared->layout.u.contig.size;
+ ret_value = dset->shared->layout.store.u.contig.size;
else
ret_value = 0;
break;