summaryrefslogtreecommitdiffstats
path: root/src/H5FDmpi.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/H5FDmpi.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/H5FDmpi.c')
-rw-r--r--src/H5FDmpi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5FDmpi.c b/src/H5FDmpi.c
index 80f2ead..74aedef 100644
--- a/src/H5FDmpi.c
+++ b/src/H5FDmpi.c
@@ -59,7 +59,7 @@ H5FD_mpi_get_rank(H5FD_t *file)
const H5FD_class_t *cls;
uint64_t flags = H5FD_CTL_FAIL_IF_UNKNOWN_FLAG | H5FD_CTL_ROUTE_TO_TERMINAL_VFD_FLAG;
int rank = -1;
- void * rank_ptr = (void *)(&rank);
+ void *rank_ptr = (void *)(&rank);
int ret_value;
FUNC_ENTER_NOAPI(FAIL)
@@ -111,7 +111,7 @@ H5FD_mpi_get_size(H5FD_t *file)
const H5FD_class_t *cls;
uint64_t flags = H5FD_CTL_FAIL_IF_UNKNOWN_FLAG | H5FD_CTL_ROUTE_TO_TERMINAL_VFD_FLAG;
int size = 0;
- void * size_ptr = (void *)(&size);
+ void *size_ptr = (void *)(&size);
int ret_value;
FUNC_ENTER_NOAPI(FAIL)
@@ -164,7 +164,7 @@ H5FD_mpi_get_comm(H5FD_t *file)
const H5FD_class_t *cls;
uint64_t flags = H5FD_CTL_FAIL_IF_UNKNOWN_FLAG | H5FD_CTL_ROUTE_TO_TERMINAL_VFD_FLAG;
MPI_Comm comm = MPI_COMM_NULL;
- void * comm_ptr = (void *)(&comm);
+ void *comm_ptr = (void *)(&comm);
MPI_Comm ret_value;
FUNC_ENTER_NOAPI(MPI_COMM_NULL)
@@ -271,7 +271,7 @@ H5FD_mpi_get_file_sync_required(H5FD_t *file, hbool_t *file_sync_required)
{
const H5FD_class_t *cls;
uint64_t flags = H5FD_CTL_ROUTE_TO_TERMINAL_VFD_FLAG;
- void * file_sync_required_ptr = (void *)(&file_sync_required);
+ void *file_sync_required_ptr = (void *)(&file_sync_required);
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI(FAIL)