summaryrefslogtreecommitdiff
path: root/MobileCydia.mm
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-05-19 01:44:20 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2014-05-19 01:44:20 -0700
commit20f46876cd40f761341ee358ee52d90adcf0db88 (patch)
treeab6939f6b6b7cb60ab9a4784c9639abc72a7079b /MobileCydia.mm
parentc8fbe1f43f894bfcc6e4a61ce77e3d865b39101f (diff)
Avoid misaligned first field in PrintTimes column.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r--MobileCydia.mm2
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;
}