diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-05-31 16:45:20 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-05-31 16:45:20 (GMT) |
commit | 18fe60ae10b4b5abb6992e7b9b2ae7b22dfa9156 (patch) | |
tree | 957d8b3caa5671d52ed09a8a98c67f92277d781e /fortran/src/H5Gf.c | |
parent | 584a810764081bc9a4dc61e2835a28e217a4538f (diff) | |
download | hdf5-18fe60ae10b4b5abb6992e7b9b2ae7b22dfa9156.zip hdf5-18fe60ae10b4b5abb6992e7b9b2ae7b22dfa9156.tar.gz hdf5-18fe60ae10b4b5abb6992e7b9b2ae7b22dfa9156.tar.bz2 |
(1) Made the change according to the pull request feedback.
(2) Removed the performance test form test/th5o.c: will decide on what needs to be done to show speedup via HDFFV-10463.
Diffstat (limited to 'fortran/src/H5Gf.c')
-rw-r--r-- | fortran/src/H5Gf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fortran/src/H5Gf.c b/fortran/src/H5Gf.c index 4ce7970..def67e1 100644 --- a/fortran/src/H5Gf.c +++ b/fortran/src/H5Gf.c @@ -200,8 +200,7 @@ h5gget_obj_info_idx_c(hid_t_f *loc_id, _fcd name, int_f *namelen, int_f *idx, /* Query the object's information */ if(H5Lget_name_by_idx(gid, ".", H5_INDEX_NAME, H5_ITER_INC, c_idx, c_obj_name, c_obj_namelen, H5P_DEFAULT) < 0) goto DONE; - /* TO DO: See flags for H5Oget_info in H5Opublic.h */ - if(H5Oget_info_by_idx2(gid, ".", H5_INDEX_NAME, H5_ITER_INC, c_idx, &oinfo, 0, H5P_DEFAULT) < 0) + if(H5Oget_info_by_idx2(gid, ".", H5_INDEX_NAME, H5_ITER_INC, c_idx, &oinfo, H5O_INFO_BASIC, H5P_DEFAULT) < 0) goto DONE; /* XXX: Switch from using H5Gget_objtype_by_idx() means that this routine won't |