From: wolf Date: Fri, 16 Apr 1999 11:28:54 +0000 (+0000) Subject: Fix mis-spelling. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72a2c8dcbdaca5942ca2730320baafff9e7be9e2;p=dealii-svn.git Fix mis-spelling. git-svn-id: https://svn.dealii.org/trunk@1164 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_gmres.h b/deal.II/lac/include/lac/solver_gmres.h index 7d73a7ae09..450b7ad2e5 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -156,7 +156,7 @@ SolverGMRES::solve (const Matrix& A, // if the size of the matrix is very small, // then only allocate a number of vectors // which is needed - const unsigned int n_tmp_vectors = (A.m()+3 > max_n_tmp_vector ? + const unsigned int n_tmp_vectors = (A.m()+3 > max_n_tmp_vectors ? max_n_tmp_vectors : A.m()+3);