Realign display of text-mode CPU meters. Closes #3369526.

This commit is contained in:
Hisham Muhammad 2011-09-08 01:29:59 +00:00
parent 11092662ee
commit 03322b62ec
1 changed files with 1 additions and 1 deletions

View File

@ -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)