From: Wolfgang Bangerth Date: Fri, 16 Apr 1999 11:28:54 +0000 (+0000) Subject: Fix mis-spelling. X-Git-Tag: v8.0.0~22118 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db714bec2772e10f1983285fafc8e523fa9932d0;p=dealii.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);