diff options
Diffstat (limited to 'tools/h5repack')
-rw-r--r-- | tools/h5repack/h5repack_copy.c | 2 | ||||
-rw-r--r-- | tools/h5repack/h5repack_refs.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5repack/h5repack_copy.c b/tools/h5repack/h5repack_copy.c index 7edb70b..6c26cee 100644 --- a/tools/h5repack/h5repack_copy.c +++ b/tools/h5repack/h5repack_copy.c @@ -900,7 +900,7 @@ int copy_attr(hid_t loc_in, int j; unsigned u; - if(H5Oget_info(loc_in, ".", &oinfo, H5P_DEFAULT) < 0) + if(H5Oget_info(loc_in, &oinfo) < 0) goto error; /*------------------------------------------------------------------------- diff --git a/tools/h5repack/h5repack_refs.c b/tools/h5repack/h5repack_refs.c index 28828b8..64d1990 100644 --- a/tools/h5repack/h5repack_refs.c +++ b/tools/h5repack/h5repack_refs.c @@ -422,7 +422,7 @@ static int copy_refs_attr(hid_t loc_in, int j; unsigned u; - if(H5Oget_info(loc_in, ".", &oinfo, H5P_DEFAULT) < 0) + if(H5Oget_info(loc_in, &oinfo) < 0) goto error; for(u = 0; u < (unsigned)oinfo.num_attrs; u++) { @@ -664,7 +664,7 @@ static const char* MapIdToName(hid_t refobj_id, H5O_info_t ref_oinfo; /* Stat for the refobj id */ /* obtain information to identify the referenced object uniquely */ - if(H5Oget_info(refobj_id, ".", &ref_oinfo, H5P_DEFAULT) < 0) + if(H5Oget_info(refobj_id, &ref_oinfo) < 0) return NULL; if(ref_oinfo.addr == travt->objs[i].objno) |