From: Wolfgang Bangerth Date: Fri, 22 May 1998 07:46:18 +0000 (+0000) Subject: Oops, seems I haven't tried really after doing the change. X-Git-Tag: v8.0.0~22921 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3405240d234bf8e7c4dba9d4fbdbace37820508d;p=dealii.git Oops, seems I haven't tried really after doing the change. git-svn-id: https://svn.dealii.org/trunk@333 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/dfmatrix.cc b/deal.II/lac/source/dfmatrix.cc index 2d9d23f37d..4f90cc672e 100644 --- a/deal.II/lac/source/dfmatrix.cc +++ b/deal.II/lac/source/dfmatrix.cc @@ -927,7 +927,7 @@ double dFMatrix::determinant () const { void dFMatrix::clear () { double *val_ptr = &val[0]; const double *end_ptr = &val[n()*m()]; - while (val_prt != end_ptr) + while (val_ptr != end_ptr) *val_ptr++ = 0.; };