diff --git a/stuff/printing.hh b/stuff/printing.hh
index 320e7b4fbb2c45e118807cc01222cf51333df812..a431af0fd6bacd4df9ffece6c3f4edd6f5c5264f 100644
--- a/stuff/printing.hh
+++ b/stuff/printing.hh
@@ -35,7 +35,7 @@ void printFieldVector(T& arg, std::string name, stream& out, std::string prefix
   IteratorType itEnd = arg.end();
   out << prefix;
   for (IteratorType it = arg.begin(); it != itEnd; ++it) {
-    out << std::setw(10) << std::setprecision(6) << *it;
+    out << std::setw(14) << std::setprecision(6) << *it;
   }
   out << '\n';
 }
@@ -69,7 +69,7 @@ void printFieldMatrix(T& arg, std::string name, stream& out, std::string prefix
     out << "\n" << prefix << "  row " << row << ":";
     VectorInRowIteratorType vItEnd = rIt->end();
     for (VectorInRowIteratorType vIt = rIt->begin(); vIt != vItEnd; ++vIt) {
-      out << std::setw(10) << std::setprecision(6) << *vIt;
+      out << std::setw(14) << std::setprecision(6) << *vIt;
     }
     row += 1;
   }