]> git.saurik.com Git - cydia.git/commitdiff
Avoid misaligned second field in PrintTimes column.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 19 May 2014 14:59:46 +0000 (07:59 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 19 May 2014 14:59:46 +0000 (07:59 -0700)
MobileCydia.mm

index 6e9497a5d45fb5fed33503b4a646366a72677e1b..0f950efb42caa250faabced05539e8fa3100d7b5 100644 (file)
@@ -159,7 +159,7 @@ class ProfileTime {
 
     void Print() {
         if (total_ != 0)
 
     void Print() {
         if (total_ != 0)
-            std::cerr << std::setw(7) << count_ << ", " << std::setw(7) << total_ << " : " << name_ << std::endl;
+            std::cerr << std::setw(7) << count_ << ", " << std::setw(8) << total_ << " : " << name_ << std::endl;
         total_ = 0;
         count_ = 0;
     }
         total_ = 0;
         count_ = 0;
     }