From adf797c295db2e0b24cc49efc7af70dafc3f10c2 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 31 Oct 2020 20:55:36 +0100 Subject: Spacing after keywords (for) --- darwin/Battery.c | 2 +- darwin/DarwinProcessList.c | 6 +++--- darwin/Platform.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'darwin') diff --git a/darwin/Battery.c b/darwin/Battery.c index df644643..854425b3 100644 --- a/darwin/Battery.c +++ b/darwin/Battery.c @@ -30,7 +30,7 @@ void Battery_getData(double* level, ACPresence* isOnAC) { len = CFArrayGetCount(list); /* Get the battery */ - for(int i = 0; i < len && battery == NULL; ++i) { + for (int i = 0; i < len && battery == NULL; ++i) { CFDictionaryRef candidate = IOPSGetPowerSourceDescription(power_sources, CFArrayGetValueAtIndex(list, i)); /* GET rule */ CFStringRef type; diff --git a/darwin/DarwinProcessList.c b/darwin/DarwinProcessList.c index 59ec9d31..3f72a3a7 100644 --- a/darwin/DarwinProcessList.c +++ b/darwin/DarwinProcessList.c @@ -164,8 +164,8 @@ void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) { /* Get the time difference */ dpl->global_diff = 0; - for(int i = 0; i < dpl->super.cpuCount; ++i) { - for(size_t j = 0; j < CPU_STATE_MAX; ++j) { + for (int i = 0; i < dpl->super.cpuCount; ++i) { + for (size_t j = 0; j < CPU_STATE_MAX; ++j) { dpl->global_diff += dpl->curr_load[i].cpu_ticks[j] - dpl->prev_load[i].cpu_ticks[j]; } } @@ -185,7 +185,7 @@ void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) { */ ps = ProcessList_getKInfoProcs(&count); - for(size_t i = 0; i < count; ++i) { + for (size_t i = 0; i < count; ++i) { proc = (DarwinProcess *)ProcessList_getProcess(super, ps[i].kp_proc.p_pid, &preExisting, DarwinProcess_new); DarwinProcess_setFromKInfoProc(&proc->super, &ps[i], preExisting); diff --git a/darwin/Platform.c b/darwin/Platform.c index a7adaeee..9086c6de 100644 --- a/darwin/Platform.c +++ b/darwin/Platform.c @@ -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]; } -- cgit v1.2.3