diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-19 07:59:46 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-19 07:59:46 -0700 |
commit | f15558c71d81bc07ffc3816d7b780f25019cc25d (patch) | |
tree | 706a63a45821c8e7595d1a6e651336ae8406252f /MobileCydia.mm | |
parent | 8e57d50b6f15363b635f15c94bb24e0674b804e0 (diff) |
Avoid misaligned second field in PrintTimes column.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 6e9497a..0f950ef 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -159,7 +159,7 @@ class ProfileTime { 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; } |