summaryrefslogtreecommitdiffstats
path: root/src/H5Fmpi.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-26 21:45:46 (GMT)
committerGitHub <noreply@github.com>2022-07-26 21:45:46 (GMT)
commitae414872f50187e64cbd6cc8f076c22cf5df2d53 (patch)
treeb616f33f5daa89f213e7c64e04c63afde906e939 /src/H5Fmpi.c
parent213eac2588369f75a11df6bb1788dde33c4b82e2 (diff)
downloadhdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.zip
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.gz
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.bz2
Develop clang 13 format (#1933)
* Update format source to clang 13 * More format changes
Diffstat (limited to 'src/H5Fmpi.c')
-rw-r--r--src/H5Fmpi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Fmpi.c b/src/H5Fmpi.c
index e83d69c..d4baf1f 100644
--- a/src/H5Fmpi.c
+++ b/src/H5Fmpi.c
@@ -241,7 +241,7 @@ done:
herr_t
H5Fset_mpi_atomicity(hid_t file_id, hbool_t flag)
{
- H5VL_object_t * vol_obj; /* File info */
+ H5VL_object_t *vol_obj; /* File info */
H5VL_optional_args_t vol_cb_args; /* Arguments to VOL callback */
H5VL_native_file_optional_args_t file_opt_args; /* Arguments for optional operation */
herr_t ret_value = SUCCEED; /* Return value */
@@ -315,7 +315,7 @@ done:
herr_t
H5Fget_mpi_atomicity(hid_t file_id, hbool_t *flag /*out*/)
{
- H5VL_object_t * vol_obj; /* File info */
+ H5VL_object_t *vol_obj; /* File info */
H5VL_optional_args_t vol_cb_args; /* Arguments to VOL callback */
H5VL_native_file_optional_args_t file_opt_args; /* Arguments for optional operation */
herr_t ret_value = SUCCEED; /* Return value */
@@ -373,7 +373,7 @@ H5F_mpi_retrieve_comm(hid_t loc_id, hid_t acspl_id, MPI_Comm *mpi_comm)
attached to the loc_id */
if (H5I_INVALID_HID != loc_id) {
H5G_loc_t loc;
- H5F_t * f = NULL;
+ H5F_t *f = NULL;
/* Retrieve the file structure */
if (H5G_loc(loc_id, &loc) < 0)
@@ -391,9 +391,9 @@ H5F_mpi_retrieve_comm(hid_t loc_id, hid_t acspl_id, MPI_Comm *mpi_comm)
/* otherwise, this is from H5Fopen or H5Fcreate and has to be collective */
else {
H5FD_driver_prop_t driver_prop; /* Property for driver ID & info */
- H5P_genplist_t * plist; /* Property list pointer */
+ H5P_genplist_t *plist; /* Property list pointer */
unsigned long driver_feat_flags;
- H5FD_class_t * driver_class = NULL;
+ H5FD_class_t *driver_class = NULL;
if (NULL == (plist = H5P_object_verify(acspl_id, H5P_FILE_ACCESS)))
HGOTO_ERROR(H5E_FILE, H5E_BADTYPE, FAIL, "not a file access list")