From be24e91aec6225af283f147ca1ba4974abb67064 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Sat, 16 Apr 2016 03:36:47 -0500 Subject: [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) --- tools/misc/h5debug.c | 6 +----- 1 file changed, 1 insertion(+), 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); -- cgit v0.12