summaryrefslogtreecommitdiffstats
path: root/src/osx
diff options
context:
space:
mode:
authoraristocratos <admin@qvantnet.com>2021-11-13 21:24:01 +0100
committeraristocratos <admin@qvantnet.com>2021-11-13 21:24:01 +0100
commitbd5d86708907397f7fc40868ff3665e23f24bb8a (patch)
tree4aa931d4bf54a85b1edcf38850f55b8112f613b0 /src/osx
parentdc5f0606cbe6f4d61bec3621c25190f1241b3fce (diff)
Fixes
Diffstat (limited to 'src/osx')
-rw-r--r--src/osx/sensors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osx/sensors.cpp b/src/osx/sensors.cpp
index 6b8213d..a76d9c9 100644
--- a/src/osx/sensors.cpp
+++ b/src/osx/sensors.cpp
@@ -78,8 +78,8 @@ long long Cpu::ThermalSensors::getSensors() {
// there is also PMU tdev1-8 but it has negative values??
// there is also eACC for efficiency package but it only has 2 entries
// and pACC for performance but it has 7 entries (2 - 9) WTF
- if (n.starts_with("eACC") or n.starts_with("pACC")) {
- temps.push_back(getValue(sc));
+ if (n.starts_with("eACC") or n.starts_with("pACC")) {
+ temps.push_back(getValue(sc));
}
CFRelease(name);
}