summaryrefslogtreecommitdiffstats
path: root/test/dsets.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2009-02-12 16:10:35 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2009-02-12 16:10:35 (GMT)
commitb566fea225bcbe95aa1e3c356803a5b8288e5106 (patch)
tree53eb695733d754e63eb2e78bafa71c8593a060ef /test/dsets.c
parentd82141259c0b5d955bc8cb403fb17d184edb6dc4 (diff)
downloadhdf5-b566fea225bcbe95aa1e3c356803a5b8288e5106.zip
hdf5-b566fea225bcbe95aa1e3c356803a5b8288e5106.tar.gz
hdf5-b566fea225bcbe95aa1e3c356803a5b8288e5106.tar.bz2
[svn-r16471] Change H5Dopen to H5Dopen2 - fixes compile error - too many arguments for H5Dopen1 when using v1.6 compatible flag. Trivial change, tested on smirom and jam.
Diffstat (limited to 'test/dsets.c')
-rw-r--r--test/dsets.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dsets.c b/test/dsets.c
index 575449a..1e31240 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -6772,7 +6772,7 @@ test_big_chunks_bypass_cache(hid_t fapl)
if(H5Dclose(dsid) < 0) FAIL_STACK_ERROR
/* Reopen the dataset */
- if((dsid = H5Dopen(fid, BYPASS_DATASET, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR
+ if((dsid = H5Dopen2(fid, BYPASS_DATASET, H5P_DEFAULT)) < 0) FAIL_STACK_ERROR
/* Reads both 2 chunks. Reading the second chunk should bypass the cache because the
* chunk is bigger than the cache size and it isn't allocated on disk. */