summaryrefslogtreecommitdiffstats
path: root/src/H5Ddbg.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-04-16 13:55:27 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-04-16 13:55:27 (GMT)
commitb5188673f70ab4f144a9b2927ce43ce407b0c8b8 (patch)
tree5fa8b99b61eeed099ad6a2a8d78b080cd0dc847f /src/H5Ddbg.c
parent6b8492bf99637a092886e7cb5d75ea4389da42d7 (diff)
downloadhdf5-b5188673f70ab4f144a9b2927ce43ce407b0c8b8.zip
hdf5-b5188673f70ab4f144a9b2927ce43ce407b0c8b8.tar.gz
hdf5-b5188673f70ab4f144a9b2927ce43ce407b0c8b8.tar.bz2
[svn-r26824] merge 26771 and 26777 from trunk.
Fix internal H5AC dxpl usage in the library. tested with h5committest.
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 a7c6dc1..4e934f2 100644
--- a/src/H5Ddbg.c
+++ b/src/H5Ddbg.c
@@ -113,7 +113,7 @@ H5Ddebug(hid_t dset_id)
/* Print B-tree information */
if(H5D_CHUNKED == dset->shared->layout.type)
- (void)H5D__chunk_dump_index(dset, H5AC_dxpl_id, stdout);
+ (void)H5D__chunk_dump_index(dset, H5AC_ind_dxpl_id, stdout);
else if(H5D_CONTIGUOUS == dset->shared->layout.type)
HDfprintf(stdout, " %-10s %a\n", "Address:", dset->shared->layout.storage.u.contig.addr);