From: oliver Date: Mon, 3 May 2004 14:50:34 +0000 (+0000) Subject: Small bugfix, which corrects wrong parameter order in a call to the X-Git-Tag: v8.0.0~15213 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f139e387163227b81080cb1e0e1c6448d8d26a9;p=dealii.git 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 --- 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); }