diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-07-28 21:29:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 21:29:10 (GMT) |
commit | 9bb1d6d78e305e73b5c882e8f5b3ef66a1acdf8d (patch) | |
tree | b775ffd01785f695823a6f5eed9ecbb5548bdfd6 | |
parent | cfcdf215187653703a21f1f99cc18e207138c39b (diff) | |
download | hdf5-9bb1d6d78e305e73b5c882e8f5b3ef66a1acdf8d.zip hdf5-9bb1d6d78e305e73b5c882e8f5b3ef66a1acdf8d.tar.gz hdf5-9bb1d6d78e305e73b5c882e8f5b3ef66a1acdf8d.tar.bz2 |
Updates a comment in H5mpi.c (#863)
MPI_Type_struct() is an MPI-1 call we no longer use.
-rw-r--r-- | src/H5mpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5mpi.c b/src/H5mpi.c index 9749721..4a8aa44 100644 --- a/src/H5mpi.c +++ b/src/H5mpi.c @@ -523,7 +523,7 @@ H5_mpio_create_large_type(hsize_t num_elements, MPI_Aint stride_bytes, MPI_Datat MPI_Type_get_extent(old_type, &unused_lb_arg, &old_extent); } - /* Set up the arguments for MPI_Type_struct constructor */ + /* Set up the arguments for MPI_Type_create_struct() */ type[0] = outer_type; type[1] = leftover_type; block_len[0] = 1; |