From 30d3bc2c91b42a0d54595267b3549ed318be2df3 Mon Sep 17 00:00:00 2001 From: Jordan Henderson Date: Fri, 13 Jul 2018 08:09:48 -0500 Subject: Fix error message mentioning wrong MPI function used --- src/H5Dmpio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Dmpio.c b/src/H5Dmpio.c index 81aa799..b9d0db6 100644 --- a/src/H5Dmpio.c +++ b/src/H5Dmpio.c @@ -526,7 +526,7 @@ H5D__mpio_array_gatherv(void *local_array, size_t local_array_num_entries, else { if (MPI_SUCCESS != (mpi_code = MPI_Gatherv(local_array, sendcount, MPI_BYTE, gathered_array, receive_counts_array, displacements_array, MPI_BYTE, root, comm))) - HMPI_GOTO_ERROR(FAIL, "MPI_Allgatherv failed", mpi_code) + HMPI_GOTO_ERROR(FAIL, "MPI_Gatherv failed", mpi_code) } /* end else */ if (sort_func && (allgather || (mpi_rank == root))) -- cgit v0.12