From b03ffd19f4fe522930f90700b60db47e537c84e1 Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Wed, 25 Mar 2009 14:28:01 -0500 Subject: [svn-r16612] I changed the API function H5Dopen to H5Dopen2, which I introduced in recent checkin. Tested on jam - simple change. --- test/vfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/vfd.c b/test/vfd.c index 3e792cc..57798a5 100644 --- a/test/vfd.c +++ b/test/vfd.c @@ -831,7 +831,7 @@ test_family_compat(void) if((file = H5Fopen(pathname, H5F_ACC_RDWR, fapl)) < 0) TEST_ERROR; - if((dset = H5Dopen(file, dname, H5P_DEFAULT)) < 0) + if((dset = H5Dopen2(file, dname, H5P_DEFAULT)) < 0) TEST_ERROR; if(H5Dclose(dset) < 0) @@ -844,7 +844,7 @@ test_family_compat(void) if((file = H5Fopen(pathname, H5F_ACC_RDWR, fapl)) < 0) TEST_ERROR; - if((dset = H5Dopen(file, dname, H5P_DEFAULT)) < 0) + if((dset = H5Dopen2(file, dname, H5P_DEFAULT)) < 0) TEST_ERROR; if(H5Dclose(dset) < 0) -- cgit v0.12