summaryrefslogtreecommitdiffstats
path: root/tools/misc
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-04-16 08:36:47 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-04-16 08:36:47 (GMT)
commitbe24e91aec6225af283f147ca1ba4974abb67064 (patch)
tree63a615fa6884d94a55604d04a4c54d9855b6795e /tools/misc
parentccdf15d88a9dd003158126e75786243dc4261fc6 (diff)
downloadhdf5-be24e91aec6225af283f147ca1ba4974abb67064.zip
hdf5-be24e91aec6225af283f147ca1ba4974abb67064.tar.gz
hdf5-be24e91aec6225af283f147ca1ba4974abb67064.tar.bz2
[svn-r29714] Description:
Switch to use internal DXPL ID, to align with recent changes within the library. Tested on: MacOSX/64 10.11.4 (amazon) w/serial & parallel (Too minor to require h5committest)
Diffstat (limited to 'tools/misc')
-rw-r--r--tools/misc/h5debug.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c
index 4df501a..94e9557 100644
--- a/tools/misc/h5debug.c
+++ b/tools/misc/h5debug.c
@@ -270,10 +270,7 @@ main(int argc, char *argv[])
/*
* Open the file and get the file descriptor.
*/
- if((dxpl = H5Pcreate(H5P_DATASET_XFER)) < 0) {
- HDfprintf(stderr, "cannot create dataset transfer property list\n");
- HDexit(1);
- } /* end if */
+ dxpl = H5AC_ind_read_dxpl_id;
if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0) {
HDfprintf(stderr, "cannot create file access property list\n");
HDexit(1);
@@ -710,7 +707,6 @@ main(int argc, char *argv[])
HDexit(5);
} /* end if */
- H5Pclose(dxpl);
H5Pclose(fapl);
H5Fclose(fid);