From: maier Date: Fri, 5 Oct 2012 16:05:29 +0000 (+0000) Subject: Bugfix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2d5c03ed7c24a29bbca06f966b8e042b9b0a5d1;p=dealii-svn.git Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@26970 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/base/data_out_base.cc b/deal.II/source/base/data_out_base.cc index 84770115b1..55d0a2b643 100644 --- a/deal.II/source/base/data_out_base.cc +++ b/deal.II/source/base/data_out_base.cc @@ -6532,7 +6532,7 @@ DataOutReader::read (std::istream &in) getline (in, header); std::ostringstream s; - s << "[written by " << DEAL_II_PACKAGE_STRING << "]"; + s << "[written by " << DEAL_II_PACKAGE_NAME << " " << DEAL_II_PACKAGE_VERSION << "]"; Assert (header == s.str(), ExcUnexpectedInput(s.str(),header)); }