]> Creatis software - clitk.git/commitdiff
Forgot width
authorsrit <srit>
Fri, 5 Feb 2010 11:40:14 +0000 (11:40 +0000)
committersrit <srit>
Fri, 5 Feb 2010 11:40:14 +0000 (11:40 +0000)
common/clitkCommon.cxx

index 37866ab7468aaa66b3d8063af605905c026781b5..4ccceb2761da9eb8b70b64f8074983442b3e04e1 100644 (file)
@@ -79,7 +79,7 @@ void clitk::VerboseInProgress(const int nb, const int current, const int percent
   previous = rounded;
 
   std::ostringstream oss;
-  oss << rounded << '%';
+  oss << std::setw(4) << rounded << '%';
 
   std::cout << oss.str() << std::flush;
   for (int i=0; i<oss.str().length(); ++i)