diff options
Diffstat (limited to 'hl/src/H5LT.c')
-rw-r--r-- | hl/src/H5LT.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hl/src/H5LT.c b/hl/src/H5LT.c index ca56d69..9b58b46 100644 --- a/hl/src/H5LT.c +++ b/hl/src/H5LT.c @@ -1456,7 +1456,7 @@ herr_t H5LTget_attribute_ndims( hid_t loc_id, return -1; /* Open the attribute. */ - if((attr_id = H5Aopen(obj_id, ".", attr_name, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if((attr_id = H5Aopen(obj_id, attr_name, H5P_DEFAULT)) < 0) { H5Oclose(obj_id); return -1; @@ -1523,7 +1523,7 @@ herr_t H5LTget_attribute_info( hid_t loc_id, return -1; /* Open the attribute. */ - if((attr_id = H5Aopen(obj_id, ".", attr_name, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if((attr_id = H5Aopen(obj_id, attr_name, H5P_DEFAULT)) < 0) { H5Oclose(obj_id); return -1; @@ -2733,7 +2733,7 @@ static herr_t H5LT_get_attribute_mem(hid_t loc_id, if((obj_id = H5Oopen(loc_id, obj_name, H5P_DEFAULT)) < 0) goto out; - if((attr_id = H5Aopen(obj_id, ".", attr_name, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if((attr_id = H5Aopen(obj_id, attr_name, H5P_DEFAULT)) < 0) goto out; if(H5Aread(attr_id, mem_type_id, data) < 0) @@ -2782,7 +2782,7 @@ herr_t H5LT_get_attribute_disk( hid_t loc_id, hid_t attr_id; hid_t attr_type; - if(( attr_id = H5Aopen(loc_id, ".", attr_name, H5P_DEFAULT, H5P_DEFAULT)) < 0) + if(( attr_id = H5Aopen(loc_id, attr_name, H5P_DEFAULT)) < 0) return -1; if((attr_type = H5Aget_type(attr_id)) < 0) |