From 3c0a923c6cba3c283b2c8452359f65cf91801221 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 11 Jan 2022 00:23:26 -0700 Subject: [PATCH] Do not reuse an MPI_Status object. --- include/deal.II/base/mpi_consensus_algorithms.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/base/mpi_consensus_algorithms.templates.h b/include/deal.II/base/mpi_consensus_algorithms.templates.h index b35bf3869b..d43b0df9e8 100644 --- a/include/deal.II/base/mpi_consensus_algorithms.templates.h +++ b/include/deal.II/base/mpi_consensus_algorithms.templates.h @@ -253,7 +253,7 @@ namespace Utilities other_rank, tag_request, this->comm, - &status); + MPI_STATUS_IGNORE); AssertThrowMPI(ierr); // Allocate memory for an answer message to the current request, -- 2.39.5