From 855bb12f81c9c4fcbcae50b2e4649d96753ea1d2 Mon Sep 17 00:00:00 2001 From: oliver Date: Mon, 3 May 2004 14:50:34 +0000 Subject: [PATCH] Small bugfix, which corrects wrong parameter order in a call to the reinit method of a parallel vector. git-svn-id: https://svn.dealii.org/trunk@9144 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/petsc_parallel_vector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/source/petsc_parallel_vector.cc b/deal.II/lac/source/petsc_parallel_vector.cc index cc3fbf8019..c5336f23d3 100644 --- a/deal.II/lac/source/petsc_parallel_vector.cc +++ b/deal.II/lac/source/petsc_parallel_vector.cc @@ -105,7 +105,7 @@ namespace PETScWrappers { communicator = v.communicator; - reinit (v.size(), v.local_size(), fast); + reinit (communicator, v.size(), v.local_size(), fast); } -- 2.39.5