Split statements that should go onto multiple lines

This commit is contained in:
Benny Baumann
2021-07-14 19:11:18 +02:00
committed by BenBE
parent 3bc73aa088
commit e7f8d7bcc9
13 changed files with 36 additions and 14 deletions

View File

@ -147,7 +147,8 @@ static void PCPProcess_writeField(const Process* this, RichString* str, ProcessF
totalRate = pp->io_rate_write_bps;
else
totalRate = NAN;
Process_printRate(str, totalRate, coloring); return;
Process_printRate(str, totalRate, coloring);
return;
}
case CGROUP: xSnprintf(buffer, n, "%-10s ", pp->cgroup ? pp->cgroup : ""); break;
case OOM: xSnprintf(buffer, n, "%4u ", pp->oom); break;