util: formatting

This commit is contained in:
Michele Caini 2023-05-19 14:24:08 +02:00
parent 5e4694abba
commit bd90d77bc7

View File

@ -219,7 +219,7 @@ UVW_INLINE std::vector<cpu_info> utilities::cpu() noexcept {
int count;
if(0 == uv_cpu_info(&infos, &count)) {
for (int next = 0; next < count; ++next) {
for(int next = 0; next < count; ++next) {
cpuinfos.push_back({infos[next].model, infos[next].speed, infos[next].cpu_times});
}