From ce37401746bedcc075cfb2811c53418139d5f4dd Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 14 May 2009 08:27:25 +0000 Subject: [PATCH] Use MPI_Comm_dup instead of MPI_Comm_Dup git-svn-id: https://svn.dealii.org/trunk@18843 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/utilities.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/base/source/utilities.cc b/deal.II/base/source/utilities.cc index 4b20cb5dd8..e7fd9fdf5b 100644 --- a/deal.II/base/source/utilities.cc +++ b/deal.II/base/source/utilities.cc @@ -490,7 +490,7 @@ namespace Utilities MPI_Comm duplicate_communicator (const MPI_Comm &mpi_communicator) { MPI_Comm new_communicator; - MPI_Comm_Dup (mpi_communicator, &new_communicator); + MPI_Comm_dup (mpi_communicator, &new_communicator); return new_communicator; } -- 2.39.5