]> git.saurik.com Git - cydia.git/commitdiff
Avoid misaligned first field in PrintTimes column.
authorJay Freeman (saurik) <saurik@saurik.com>
Mon, 19 May 2014 08:44:20 +0000 (01:44 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 19 May 2014 08:44:20 +0000 (01:44 -0700)
MobileCydia.mm

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