From: Wolfgang Bangerth Date: Wed, 25 May 2005 18:36:29 +0000 (+0000) Subject: Don't output the time quite so wide. X-Git-Tag: v8.0.0~13805 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57b10ebf05d2d15d878a3a4ff20a56362e6f1ee4;p=dealii.git Don't output the time quite so wide. git-svn-id: https://svn.dealii.org/trunk@10751 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-18/step-18.cc b/deal.II/examples/step-18/step-18.cc index 335408d75e..080d5c2779 100644 --- a/deal.II/examples/step-18/step-18.cc +++ b/deal.II/examples/step-18/step-18.cc @@ -2075,7 +2075,7 @@ namespace QuasiStaticElasticity filename << "solution-"; filename << std::setfill('0'); filename.setf(std::ios_base::fixed, std::ios_base::floatfield); - filename << std::setw(12) << std::setprecision(4) << present_time; + filename << std::setw(9) << std::setprecision(4) << present_time; // Next, in case there are // multiple processes working