From e1a737e59f574e966a74edde2f378503c2f684e9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 25 Sep 2002 23:38:50 +0000 Subject: [PATCH] It is of course useless to first abort, then to print an error... git-svn-id: https://svn.dealii.org/trunk@6523 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_direct.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index f4af3d38b8..70d84db44d 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -246,9 +246,9 @@ struct SparseDirectMA27::DetachedModeData sizeof(T) * N - count); if (ret < 0) { - abort (); std::cerr << "****** error " << ret << " on server side!" << std::endl; + abort (); } else count += ret; -- 2.39.5