Spacing after keywords (for)

This commit is contained in:
Benny Baumann
2020-10-31 20:55:36 +01:00
parent 374edb9ed5
commit adf797c295
8 changed files with 15 additions and 15 deletions

View File

@ -206,7 +206,7 @@ double Platform_setCPUValues(Meter* mtr, int cpu) {
double total = 0;
/* Take the sums */
for(size_t i = 0; i < CPU_STATE_MAX; ++i) {
for (size_t i = 0; i < CPU_STATE_MAX; ++i) {
total += (double)curr->cpu_ticks[i] - (double)prev->cpu_ticks[i];
}