diff options
author | Jordan Henderson <jhenderson@hdfgroup.org> | 2018-07-13 13:09:48 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2018-07-26 22:18:39 (GMT) |
commit | 21a5db8d98cb4bc7b2f51ebf29d6f964697532b8 (patch) | |
tree | 0ca0bdb7f00adb0f69e15be33de876d99f1e408a /src/H5Dmpio.c | |
parent | 883f0a4eb8d06d5b7be44a95f6df57ddff2dcc4d (diff) | |
download | hdf5-21a5db8d98cb4bc7b2f51ebf29d6f964697532b8.zip hdf5-21a5db8d98cb4bc7b2f51ebf29d6f964697532b8.tar.gz hdf5-21a5db8d98cb4bc7b2f51ebf29d6f964697532b8.tar.bz2 |
Fix error message mentioning wrong MPI function used
Diffstat (limited to 'src/H5Dmpio.c')
-rw-r--r-- | src/H5Dmpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dmpio.c b/src/H5Dmpio.c index e621e04..901b4d1 100644 --- a/src/H5Dmpio.c +++ b/src/H5Dmpio.c @@ -502,7 +502,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) HDqsort(gathered_array, gathered_array_num_entries, array_entry_size, sort_func); |