summaryrefslogtreecommitdiffstats
path: root/src/H5Ddbg.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-29 21:46:32 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-29 21:46:32 (GMT)
commitded93bd0c4842f7941e0468411db4cfc325a5095 (patch)
tree8270ff7663223eb1f5eb34f5ed48a9c15f1fd4ce /src/H5Ddbg.c
parent4dd601ef374d6000f3592db39a8aaf4c56dedfa4 (diff)
downloadhdf5-ded93bd0c4842f7941e0468411db4cfc325a5095.zip
hdf5-ded93bd0c4842f7941e0468411db4cfc325a5095.tar.gz
hdf5-ded93bd0c4842f7941e0468411db4cfc325a5095.tar.bz2
[svn-r17262] Description:
Bring r17261 from trunk to 1.8 branch: Refactoring dataset layout information to segregate the constant items from the variable items (at least from a storage standpoint). Tested on: FreeBSD/32 6.3 (duty) (h5committest performed on trunk)
Diffstat (limited to 'src/H5Ddbg.c')
-rw-r--r--src/H5Ddbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ddbg.c b/src/H5Ddbg.c
index 714c2e3..a7e7fa9 100644
--- a/src/H5Ddbg.c
+++ b/src/H5Ddbg.c
@@ -115,7 +115,7 @@ H5Ddebug(hid_t dset_id)
if(H5D_CHUNKED == dset->shared->layout.type)
(void)H5D_chunk_dump_index(dset, H5AC_dxpl_id, stdout);
else if(H5D_CONTIGUOUS == dset->shared->layout.type)
- HDfprintf(stdout, " %-10s %a\n", "Address:", dset->shared->layout.u.contig.addr);
+ HDfprintf(stdout, " %-10s %a\n", "Address:", dset->shared->layout.store.u.contig.addr);
done:
FUNC_LEAVE_API(ret_value)