summaryrefslogtreecommitdiffstats
path: root/src/H5mpi.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-29 13:36:40 (GMT)
committerGitHub <noreply@github.com>2022-07-29 13:36:40 (GMT)
commit40fc2cca16cd562954d3b724fa56badb3b9da72b (patch)
tree536b4bb51328af98ead7dfa1951f36b47f9b752a /src/H5mpi.c
parentc63dfb0fd3345ecb33014612f94d3959f147be03 (diff)
downloadhdf5-40fc2cca16cd562954d3b724fa56badb3b9da72b.zip
hdf5-40fc2cca16cd562954d3b724fa56badb3b9da72b.tar.gz
hdf5-40fc2cca16cd562954d3b724fa56badb3b9da72b.tar.bz2
1.10 clang 13 format #1933 (#1940)
* clang 13 format #1933 * Correct workflow
Diffstat (limited to 'src/H5mpi.c')
-rw-r--r--src/H5mpi.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5mpi.c b/src/H5mpi.c
index 7497ae9..013fc83 100644
--- a/src/H5mpi.c
+++ b/src/H5mpi.c
@@ -341,9 +341,9 @@ herr_t
H5_mpi_info_cmp(MPI_Info info1, MPI_Info info2, int *result)
{
hbool_t same = FALSE;
- char * key = NULL;
- char * value1 = NULL;
- char * value2 = NULL;
+ char *key = NULL;
+ char *value1 = NULL;
+ char *value2 = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI(FAIL)
@@ -627,7 +627,7 @@ H5_mpio_gatherv_alloc(void *send_buf, int send_count, MPI_Datatype send_type, co
MPI_Comm comm, int mpi_rank, int mpi_size, void **out_buf, size_t *out_buf_num_entries)
{
size_t recv_buf_num_entries = 0;
- void * recv_buf = NULL;
+ void *recv_buf = NULL;
#if MPI_VERSION >= 3
MPI_Count type_lb;
MPI_Count type_extent;
@@ -720,7 +720,7 @@ H5_mpio_gatherv_alloc_simple(void *send_buf, int send_count, MPI_Datatype send_t
hbool_t allgather, int root, MPI_Comm comm, int mpi_rank, int mpi_size,
void **out_buf, size_t *out_buf_num_entries)
{
- int * recv_counts_disps_array = NULL;
+ int *recv_counts_disps_array = NULL;
int mpi_code;
herr_t ret_value = SUCCEED;
@@ -760,7 +760,7 @@ H5_mpio_gatherv_alloc_simple(void *send_buf, int send_count, MPI_Datatype send_t
/* Set the displacements into the receive buffer for the gather operation */
if (allgather || (mpi_rank == root)) {
size_t i;
- int * displacements_ptr;
+ int *displacements_ptr;
displacements_ptr = &recv_counts_disps_array[mpi_size];