summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Rf.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-27 22:28:33 (GMT)
committerGitHub <noreply@github.com>2023-07-27 22:28:33 (GMT)
commit41a6b581aef055821796fc9d31f58778dc1c4197 (patch)
treef36f43cc54acdaeab80edd100183719402121508 /fortran/src/H5Rf.c
parent0e82707100cf3d1b698d2ec0cad08db61d552d63 (diff)
downloadhdf5-41a6b581aef055821796fc9d31f58778dc1c4197.zip
hdf5-41a6b581aef055821796fc9d31f58778dc1c4197.tar.gz
hdf5-41a6b581aef055821796fc9d31f58778dc1c4197.tar.bz2
Sync Fortran w/ develop (#3296)
Diffstat (limited to 'fortran/src/H5Rf.c')
-rw-r--r--fortran/src/H5Rf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fortran/src/H5Rf.c b/fortran/src/H5Rf.c
index ad99418..d9ef5d0 100644
--- a/fortran/src/H5Rf.c
+++ b/fortran/src/H5Rf.c
@@ -50,13 +50,13 @@ h5rcreate_region_c(int_f *ref, hid_t_f *loc_id, _fcd name, int_f *namelen, hid_t
* Convert FORTRAN name to C name
*/
if (NULL == (c_name = (char *)HD5f2cstring(name, (size_t)*namelen)))
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
/*
* Call H5Rcreate function.
*/
if (H5Rcreate(&ref_c, (hid_t)*loc_id, c_name, H5R_DATASET_REGION, (hid_t)*space_id) < 0)
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
/* Copy the reference created */
memcpy(ref, &ref_c, H5R_DSET_REG_REF_BUF_SIZE);
@@ -170,7 +170,7 @@ h5rget_region_region_c(hid_t_f *dset_id, int_f *ref, hid_t_f *space_id)
* Call H5Rget_region function.
*/
if ((c_space_id = H5Rget_region((hid_t)*dset_id, H5R_DATASET_REGION, &ref_c)) < 0)
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
/* Copy the dataspace ID */
*space_id = (hid_t_f)c_space_id;
@@ -204,7 +204,7 @@ h5rget_region_ptr_c(hid_t_f *dset_id, void *ref, hid_t_f *space_id)
* Call H5Rget_region function.
*/
if ((c_space_id = H5Rget_region((hid_t)*dset_id, H5R_DATASET_REGION, ref)) < 0)
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
/* Copy the dataspace ID */
*space_id = (hid_t_f)c_space_id;
@@ -240,7 +240,7 @@ h5rget_object_type_obj_c(hid_t_f *dset_id, haddr_t_f *ref, int_f *obj_type)
* Call H5Rget_object_type function.
*/
if (H5Rget_obj_type2((hid_t)*dset_id, H5R_OBJECT, &ref_c, &c_obj_type) < 0)
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
/* Copy the object type */
*obj_type = (int_f)c_obj_type;