diff options
author | John Mainzer <mainzer@hdfgroup.org> | 2010-10-18 22:14:42 (GMT) |
---|---|---|
committer | John Mainzer <mainzer@hdfgroup.org> | 2010-10-18 22:14:42 (GMT) |
commit | 111f71366a3fb7ad7727dc3fda1a4f31dc788747 (patch) | |
tree | b574f3d4b64b54f0843fd8a8651a1fe142ac8448 /testpar | |
parent | eb059764bb5306741f4adb7969dad533c3536f5e (diff) | |
download | hdf5-111f71366a3fb7ad7727dc3fda1a4f31dc788747.zip hdf5-111f71366a3fb7ad7727dc3fda1a4f31dc788747.tar.gz hdf5-111f71366a3fb7ad7727dc3fda1a4f31dc788747.tar.bz2 |
[svn-r19632]
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 ) { |