From 20f46876cd40f761341ee358ee52d90adcf0db88 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 19 May 2014 01:44:20 -0700 Subject: [PATCH] Avoid misaligned first field in PrintTimes column. --- MobileCydia.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileCydia.mm b/MobileCydia.mm index 2baba6cd..b0c1f543 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; } -- 2.50.0