diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2019-01-07 20:15:05 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2019-01-07 20:15:05 (GMT) |
commit | e52e68c82f16a74551d7ce21976d87b40c6ddcd7 (patch) | |
tree | 4dc37d44b01d4e3b9645ec36b3f9e2e177fc05b2 /test | |
parent | 0bc3d1567bdbdd1beed7aefa0caa6ac4d10b1b92 (diff) | |
parent | 982852c603c03a06ca24f219127f49616c7d42cb (diff) | |
download | hdf5-e52e68c82f16a74551d7ce21976d87b40c6ddcd7.zip hdf5-e52e68c82f16a74551d7ce21976d87b40c6ddcd7.tar.gz hdf5-e52e68c82f16a74551d7ce21976d87b40c6ddcd7.tar.bz2 |
Merge pull request #1445 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit '982852c603c03a06ca24f219127f49616c7d42cb':
Fix for daily test failure: too many arguments to function 'H5Gopen1'
Diffstat (limited to 'test')
-rw-r--r-- | test/del_many_dense_attrs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/del_many_dense_attrs.c b/test/del_many_dense_attrs.c index bbae48d..d88045c 100644 --- a/test/del_many_dense_attrs.c +++ b/test/del_many_dense_attrs.c @@ -163,7 +163,7 @@ main(void) TEST_ERROR /* Open the group */ - if((gid = H5Gopen(fid, "group", H5P_DEFAULT)) < 0) + if((gid = H5Gopen2(fid, "group", H5P_DEFAULT)) < 0) TEST_ERROR /* Delete the attributes */ |