diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-02-05 18:47:31 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-02-05 18:47:31 (GMT) |
commit | d08f56e027762fde54be6959b9c4e76514578ae1 (patch) | |
tree | 03a1777f4505e2b3adbf8a225d038a8e3fd27371 /fortran/src | |
parent | f325002db905f7da14e66a3bb30ac508d0cfb7fa (diff) | |
download | hdf5-d08f56e027762fde54be6959b9c4e76514578ae1.zip hdf5-d08f56e027762fde54be6959b9c4e76514578ae1.tar.gz hdf5-d08f56e027762fde54be6959b9c4e76514578ae1.tar.bz2 |
HDFFV-10345 whitespace corrections
Diffstat (limited to 'fortran/src')
-rw-r--r-- | fortran/src/H5Gf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/src/H5Gf.c b/fortran/src/H5Gf.c index cbe4175..b829b20 100644 --- a/fortran/src/H5Gf.c +++ b/fortran/src/H5Gf.c @@ -69,11 +69,11 @@ h5gcreate_c(hid_t_f *loc_id, _fcd name, int_f *namelen, size_t_f *size_hint, else { /* Create the group creation property list */ if((c_gcpl_id = H5Pcreate(H5P_GROUP_CREATE)) < 0) - goto DONE; + goto DONE; /* Set the local heap size hint */ if(H5Pset_local_heap_size_hint(c_gcpl_id, (size_t)*size_hint) < 0) - goto DONE; + goto DONE; /* Create the group */ c_grp_id = H5Gcreate2((hid_t)*loc_id, c_name, H5P_DEFAULT, c_gcpl_id, H5P_DEFAULT); |