summaryrefslogtreecommitdiffstats
path: root/src/H5Doh.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-31 03:36:04 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-31 03:36:04 (GMT)
commit92b1407a53c1de3a1ec2fdc19fc3f40b6b8c2483 (patch)
tree90767c436eed551800a0053c6b301d715c1f0763 /src/H5Doh.c
parentd96e6789c0be7046b1f191864efc02a2aeed645e (diff)
downloadhdf5-92b1407a53c1de3a1ec2fdc19fc3f40b6b8c2483.zip
hdf5-92b1407a53c1de3a1ec2fdc19fc3f40b6b8c2483.tar.gz
hdf5-92b1407a53c1de3a1ec2fdc19fc3f40b6b8c2483.tar.bz2
[svn-r17282] Description:
Bring r17281 from trunk to 1.8 branch: Further refactoring of the dataset layout information, to separate the storage information from the layout info. Tested on: Mac OS X/32 10.5.7 (amazon) debug & production h5committested on trunk
Diffstat (limited to 'src/H5Doh.c')
-rw-r--r--src/H5Doh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Doh.c b/src/H5Doh.c
index 93fd21a..d2649f7 100644
--- a/src/H5Doh.c
+++ b/src/H5Doh.c
@@ -376,7 +376,7 @@ H5O_dset_bh_info(H5F_t *f, hid_t dxpl_id, H5O_t *oh, H5_ih_info_t *bh_info)
HGOTO_ERROR(H5E_OHDR, H5E_CANTGET, FAIL, "can't find layout message")
/* Check for chunked dataset storage */
- if(layout.type == H5D_CHUNKED && H5D_chunk_is_space_alloc(&layout)) {
+ if(layout.type == H5D_CHUNKED && H5D_chunk_is_space_alloc(&layout.storage)) {
H5O_pline_t pline; /* I/O pipeline message */
htri_t exists; /* Flag if header message of interest exists */