From 9a128536e9a018c6b8b449d4139fba11ef0e3b09 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 26 Oct 2000 15:56:37 +0000 Subject: [PATCH] Fix bug only visible in debug mode. git-svn-id: https://svn.dealii.org/trunk@3463 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/dofs/dof_constraints.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/dofs/dof_constraints.cc b/deal.II/deal.II/source/dofs/dof_constraints.cc index 54593af886..a19fd12fd1 100644 --- a/deal.II/deal.II/source/dofs/dof_constraints.cc +++ b/deal.II/deal.II/source/dofs/dof_constraints.cc @@ -140,7 +140,8 @@ void ConstraintMatrix::add_entries (const unsigned int li // entry exists, break // innermost loop Assert (p->second == col_val_pair->second, - ExcEntryAlreadyExists(line, column, p->second, value)); + ExcEntryAlreadyExists(line, col_val_pair->first, + p->second, col_val_pair->second)); break; }; -- 2.39.5