diff options
author | vchoi <vchoi@jelly.ad.hdfgroup.org> | 2019-01-07 22:20:34 (GMT) |
---|---|---|
committer | vchoi <vchoi@jelly.ad.hdfgroup.org> | 2019-01-07 22:20:34 (GMT) |
commit | 1a50622733c14d89b3fd8c6bab684af9205a3b96 (patch) | |
tree | 047f41074c4916b3887121ada9e1718000989ffe | |
parent | a21b77851745d5dd5947fd6f40bd1ab9db336c97 (diff) | |
download | hdf5-1a50622733c14d89b3fd8c6bab684af9205a3b96.zip hdf5-1a50622733c14d89b3fd8c6bab684af9205a3b96.tar.gz hdf5-1a50622733c14d89b3fd8c6bab684af9205a3b96.tar.bz2 |
Fix for daily test failure: too many arguments to function 'H5Gopen1'.
-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 */ |