summaryrefslogtreecommitdiffstats
path: root/hl/fortran/src/H5IMfc.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 /hl/fortran/src/H5IMfc.c
parent0e82707100cf3d1b698d2ec0cad08db61d552d63 (diff)
downloadhdf5-41a6b581aef055821796fc9d31f58778dc1c4197.zip
hdf5-41a6b581aef055821796fc9d31f58778dc1c4197.tar.gz
hdf5-41a6b581aef055821796fc9d31f58778dc1c4197.tar.bz2
Sync Fortran w/ develop (#3296)
Diffstat (limited to 'hl/fortran/src/H5IMfc.c')
-rw-r--r--hl/fortran/src/H5IMfc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/fortran/src/H5IMfc.c b/hl/fortran/src/H5IMfc.c
index a165ced..9d8baf2 100644
--- a/hl/fortran/src/H5IMfc.c
+++ b/hl/fortran/src/H5IMfc.c
@@ -297,7 +297,7 @@ h5immake_palette_c(hid_t_f *loc_id, size_t_f *namelen, _fcd name, hsize_t_f *dim
* convert FORTRAN name to C name
*/
if (NULL == (c_name = (char *)HD5f2cstring(name, (size_t)*namelen)))
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
for (i = 0; i < rank; i++)
c_dims[i] = (hsize_t)dims[i];
@@ -306,7 +306,7 @@ h5immake_palette_c(hid_t_f *loc_id, size_t_f *namelen, _fcd name, hsize_t_f *dim
* call H5IMmake_palette function.
*/
if (H5IMmake_palettef((hid_t)*loc_id, c_name, c_dims, (int_f *)buf) < 0)
- HGOTO_DONE(FAIL)
+ HGOTO_DONE(FAIL);
done:
if (c_name)