From: wolf Date: Thu, 2 Jul 1998 08:41:19 +0000 (+0000) Subject: Fix more or less apparent bug. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c349c12c37dc5b4aff3cf0decd9d9a9f4dc11f3a;p=dealii-svn.git Fix more or less apparent bug. git-svn-id: https://svn.dealii.org/trunk@427 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/dofs/dof_handler.cc b/deal.II/deal.II/source/dofs/dof_handler.cc index bc9b73ee0e..a2855ab38e 100644 --- a/deal.II/deal.II/source/dofs/dof_handler.cc +++ b/deal.II/deal.II/source/dofs/dof_handler.cc @@ -875,7 +875,7 @@ unsigned int DoFHandler<2>::distribute_dofs_on_cell (active_cell_iterator &cell, // dofs of quad if (selected_fe->dofs_per_quad > 0) - for (unsigned int d=0; ddofs_per_line; ++d) + for (unsigned int d=0; ddofs_per_quad; ++d) cell->set_dof_index (d, next_free_dof++);