diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-03-16 20:08:34 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-03-16 20:08:34 (GMT) |
commit | ebd388882bc49e77234580e1efd0a77e6bed3171 (patch) | |
tree | 1cf1994c61da489a60e22fcfa12f134bb4deba9b /test | |
parent | 3134225d82cde850e95eb9d221af2a009096af70 (diff) | |
download | hdf5-ebd388882bc49e77234580e1efd0a77e6bed3171.zip hdf5-ebd388882bc49e77234580e1efd0a77e6bed3171.tar.gz hdf5-ebd388882bc49e77234580e1efd0a77e6bed3171.tar.bz2 |
[svn-r20262] In my previous checkin (20255), I used H5Gcreate instead of H5Gcreate2 in my test. I just corrected it
.
Tested on jam.
Diffstat (limited to 'test')
-rw-r--r-- | test/tfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tfile.c b/test/tfile.c index ab374f8..0b6099c 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -3189,7 +3189,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"); /* |