diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-01-07 17:49:53 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2019-01-07 17:49:53 (GMT) |
commit | 982852c603c03a06ca24f219127f49616c7d42cb (patch) | |
tree | 9ae97bad23ac7817882687e84af6970e1311b466 /test | |
parent | 7bf6d847ae36940f1b1147820356795c7764dbeb (diff) | |
download | hdf5-982852c603c03a06ca24f219127f49616c7d42cb.zip hdf5-982852c603c03a06ca24f219127f49616c7d42cb.tar.gz hdf5-982852c603c03a06ca24f219127f49616c7d42cb.tar.bz2 |
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 */ |