X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d6ce3162b34f0a964b8844368b9d86df4f1cf89b..c8304965b869fd1264284ea426f02dcd111fb62b:/src/smpi/smpi_mpi.c?ds=sidebyside diff --git a/src/smpi/smpi_mpi.c b/src/smpi/smpi_mpi.c index b21ccbf4f8..988f2ee9df 100644 --- a/src/smpi/smpi_mpi.c +++ b/src/smpi/smpi_mpi.c @@ -53,7 +53,7 @@ int MPI_Comm_rank(MPI_Comm comm, int *rank) } else if (NULL == rank) { retval = MPI_ERR_ARG; } else { - *rank = smpi_comm_rank(comm, SIMIX_host_self()); + *rank = smpi_mpi_comm_rank(comm, SIMIX_host_self()); } smpi_bench_begin();