diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-19 01:44:20 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-19 01:44:20 -0700 |
commit | 20f46876cd40f761341ee358ee52d90adcf0db88 (patch) | |
tree | ab6939f6b6b7cb60ab9a4784c9639abc72a7079b | |
parent | c8fbe1f43f894bfcc6e4a61ce77e3d865b39101f (diff) |
Avoid misaligned first field in PrintTimes column.
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 2baba6c..b0c1f54 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -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; } |