summaryrefslogtreecommitdiffstats
path: root/test/tfile.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2011-03-16 20:07:38 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2011-03-16 20:07:38 (GMT)
commitb992a1965944e5a5fb497628c3c048c50d5652b0 (patch)
tree45cee548ab7ebe5a6317c00bc6a3e3a4a60b2b5f /test/tfile.c
parent042eed235d75999be367f5889de2921157029af7 (diff)
downloadhdf5-b992a1965944e5a5fb497628c3c048c50d5652b0.zip
hdf5-b992a1965944e5a5fb497628c3c048c50d5652b0.tar.gz
hdf5-b992a1965944e5a5fb497628c3c048c50d5652b0.tar.bz2
[svn-r20261] In my previous checkin (20256), I used H5Gcreate instead of H5Gcreate2 in my test. I just corrected it.
Tested on jam with v16 API as the default.
Diffstat (limited to 'test/tfile.c')
-rw-r--r--test/tfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tfile.c b/test/tfile.c
index 6f18a08..1f7271a 100644
--- a/test/tfile.c
+++ b/test/tfile.c
@@ -2642,7 +2642,7 @@ test_libver_macros2(void)
/*
* Create a group in the file.
*/
- grp = H5Gcreate(file, "Group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
+ grp = H5Gcreate2(file, "Group", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
CHECK(file, FAIL, "H5Gcreate");
/*