diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2010-10-18 22:13:54 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2010-10-18 22:13:54 (GMT) |
commit | 5abc2e63ff22958aa201203566e6baacb0d5cc7a (patch) | |
tree | b0d77a943aa144237833a8f3521748b55bba0764 /testpar | |
parent | 331bc7fa0f59c3d87ef85bf0ede763c0a5f5a612 (diff) | |
download | hdf5-5abc2e63ff22958aa201203566e6baacb0d5cc7a.zip hdf5-5abc2e63ff22958aa201203566e6baacb0d5cc7a.tar.gz hdf5-5abc2e63ff22958aa201203566e6baacb0d5cc7a.tar.bz2 |
[svn-r19631]
Modified test code in t_mdset to use H5Dopen2() instead of H5Dopen1().
This should fix the compile failure when we used --disable-deprecated-symbols
Cursory commit test
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_mdset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c index 779c681..80e2abf 100644 --- a/testpar/t_mdset.c +++ b/testpar/t_mdset.c @@ -2136,7 +2136,7 @@ void rr_obj_hdr_flush_confusion(void) for ( i = 0; i < NUM_DATA_SETS; i++ ) { - dataset[i] = H5Dopen1(file_id, dataset_name[i]); + dataset[i] = H5Dopen2(file_id, dataset_name[i], H5P_DEFAULT); if ( dataset[i] < 0 ) { |