diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-12-31 00:46:41 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-12-31 00:46:41 (GMT) |
commit | 0ef588986260da7bd72697c276f0f8937791f59f (patch) | |
tree | 81455c1f2bcd503b372797a7fc1fcd87526de9ab /src/H5.c | |
parent | 43bd13837d0c2e50651cbded2fae90d9189d1b73 (diff) | |
download | hdf5-0ef588986260da7bd72697c276f0f8937791f59f.zip hdf5-0ef588986260da7bd72697c276f0f8937791f59f.tar.gz hdf5-0ef588986260da7bd72697c276f0f8937791f59f.tar.bz2 |
Replaced all MPI-1 calls with MPI-2 equivalents (from develop).
Diffstat (limited to 'src/H5.c')
-rw-r--r-- | src/H5.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -138,7 +138,7 @@ H5_init_library(void) if (mpi_initialized && !mpi_finalized) { int key_val; - if(MPI_SUCCESS != (mpi_code = MPI_Comm_create_keyval(MPI_NULL_COPY_FN, + if(MPI_SUCCESS != (mpi_code = MPI_Comm_create_keyval(MPI_COMM_NULL_COPY_FN, (MPI_Comm_delete_attr_function *)H5_mpi_delete_cb, &key_val, NULL))) HMPI_GOTO_ERROR(FAIL, "MPI_Comm_create_keyval failed", mpi_code) |