From a8153450291be572b897df6f43f725d642c48099 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 25 May 2005 18:36:29 +0000 Subject: [PATCH] Don't output the time quite so wide. git-svn-id: https://svn.dealii.org/trunk@10751 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-18/step-18.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5