diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-30 03:27:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-30 03:27:41 (GMT) |
commit | f0ce4df67f82ee7308ad812a1772079fcb141182 (patch) | |
tree | ca5bd1f64a5e705af3efafcae3eb705ad767d97a /src/H5Defl.c | |
parent | ccc0d85878139e0d00a9376af719ca0ee2bea585 (diff) | |
download | hdf5-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/H5Defl.c')
-rw-r--r-- | src/H5Defl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Defl.c b/src/H5Defl.c index b9a8345..c884fd0 100644 --- a/src/H5Defl.c +++ b/src/H5Defl.c @@ -159,7 +159,7 @@ H5D_efl_construct(H5F_t *f, H5D_t *dset) /* Compute the total size of dataset */ tmp_size = H5S_GET_EXTENT_NPOINTS(dset->shared->space) * dt_size; - H5_ASSIGN_OVERFLOW(dset->shared->layout.u.contig.size, tmp_size, hssize_t, hsize_t); + H5_ASSIGN_OVERFLOW(dset->shared->layout.store.u.contig.size, tmp_size, hssize_t, hsize_t); /* Get the sieve buffer size for this dataset */ dset->shared->cache.contig.sieve_buf_size = H5F_SIEVE_BUF_SIZE(f); |