From 03322b62ec1e5c4193e95aa7e0b122b44767860b Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 8 Sep 2011 01:29:59 +0000 Subject: [PATCH] Realign display of text-mode CPU meters. Closes #3369526. --- CPUMeter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CPUMeter.c b/CPUMeter.c index c1912f15..8e6f9001 100644 --- a/CPUMeter.c +++ b/CPUMeter.c @@ -33,7 +33,7 @@ static void CPUMeter_init(Meter* this) { int cpu = this->param; if (this->pl->cpuCount > 1) { char caption[10]; - sprintf(caption, "%-3d ", ProcessList_cpuId(this->pl, cpu)); + sprintf(caption, "%-3d", ProcessList_cpuId(this->pl, cpu)); Meter_setCaption(this, caption); } if (this->param == 0)